:root {
  color-scheme: dark;
  --bg-0: #050614;
  --bg-1: #070a1f;
  --bg-2: #0a0d2c;
  --primary: linear-gradient(135deg, #7a3cff 0%, #2f7dff 100%);
  --secondary: linear-gradient(135deg, #b15cff 0%, #4b6cff 50%, #18d7ff 100%);
  --card: rgba(255, 255, 255, 0.06);
  --deep-card: rgba(10, 14, 35, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --hot-line: rgba(133, 89, 255, 0.45);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.68);
  --weak: rgba(255, 255, 255, 0.42);
  --shadow-a: 0 0 24px rgba(122, 60, 255, 0.36);
  --shadow-b: 0 0 48px rgba(47, 125, 255, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-img: 18px;
}

@font-face {
  font-family: "DINCondensedBold";
  src: url("../assets/fonts/DIN-CONDENSED-BOLD.WOFF.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #02030a;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; color: inherit; }
input, textarea { outline: 0; }

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 60, 255, 0.22), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(47, 125, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #050614 0%, #080b22 52%, #050614 100%);
}

.phone {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 60, 255, 0.18), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(24, 215, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 52%, var(--bg-0));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.38);
}

.view {
  display: none;
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.view.active { display: block; }
.content { padding: 0 18px 26px; }
.page-top { padding-top: calc(22px + env(safe-area-inset-top)); }
.hidden { display: none !important; }

.particle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle-layer span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 0 14px rgba(122,60,255,0.85);
  animation: floatParticle 8s ease-in-out infinite;
}

.particle-layer span:nth-child(1) { left: 8%; top: 12%; }
.particle-layer span:nth-child(2) { left: 74%; top: 8%; animation-delay: .9s; }
.particle-layer span:nth-child(3) { left: 88%; top: 32%; animation-delay: 1.8s; }
.particle-layer span:nth-child(4) { left: 18%; top: 42%; animation-delay: 2.4s; }
.particle-layer span:nth-child(5) { left: 66%; top: 54%; animation-delay: .4s; }
.particle-layer span:nth-child(6) { left: 35%; top: 68%; animation-delay: 1.2s; }
.particle-layer span:nth-child(7) { left: 92%; top: 76%; animation-delay: 2.9s; }
.particle-layer span:nth-child(8) { left: 14%; top: 88%; animation-delay: 3.3s; }
.particle-layer span:nth-child(9) { left: 52%; top: 24%; animation-delay: 2s; }
.particle-layer span:nth-child(10) { left: 4%; top: 62%; animation-delay: .7s; }
.particle-layer span:nth-child(11) { left: 82%; top: 92%; animation-delay: 1.6s; }
.particle-layer span:nth-child(12) { left: 42%; top: 4%; animation-delay: 2.7s; }

.glass-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(122,60,255,0.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-b);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.btn:active { transform: scale(.97); opacity: .88; }
.btn.primary { background: var(--primary); box-shadow: var(--shadow-a); animation: breathe 3s ease-in-out infinite; }
.btn.glass { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.btn.wide { width: 100%; }
.btn i, .hero-actions i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4cffbd;
  box-shadow: 0 0 12px rgba(76,255,189,.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bda6ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18d7ff;
  box-shadow: 0 0 14px rgba(24,215,255,.8);
}

.profile-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #050614;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.04);
  pointer-events: none;
}

.hero-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,60,255,.3), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(47,125,255,.08), transparent 32%),
    linear-gradient(180deg, rgba(5,6,20,.08) 0%, rgba(5,6,20,.2) 46%, rgba(5,6,20,.94) 100%);
  pointer-events: none;
}

.backend-pill {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 16px;
  z-index: 3;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  background: rgba(8,11,31,.42);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.language-toggle {
  position: absolute;
  z-index: 10;
  min-width: 58px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: .04em;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.language-toggle svg,
.language-toggle [data-language-short] {
  pointer-events: none;
}

.language-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle [data-language-short] {
  min-width: 15px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.language-toggle:active { transform: scale(.96); }
.language-toggle:focus-visible {
  outline: 2px solid rgba(125, 211, 252, .9);
  outline-offset: 3px;
}

.hero-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 32px;
  z-index: 3;
}

.hero-video-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 168px;
  min-height: 94px;
  padding: 14px 12px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  gap: 5px;
  transform: translate(-50%, -34%);
  color: rgba(255,255,255,.9);
  background: rgba(5,6,20,.24);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 38px rgba(47,125,255,.18);
}

.play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: var(--shadow-a);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.hero-video-hint strong { font-size: 13px; }
.hero-video-hint small { color: var(--weak); font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.hero-actions { display: flex; gap: 12px; }
.hero-actions .btn { flex: 1; }

.core-card {
  margin-top: -18px;
  padding: 18px;
}

.core-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 15px;
  align-items: center;
}

.core-main img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow-a);
  margin-top: 0;
  object-fit: cover;
}

.core-profile {
  display: contents;
}

.core-main h2 {
  grid-column: 2;
  margin: 0;
  font-size: 29px;
  line-height: 1.04;
  align-self: end;
}
.core-main h2 span { color: rgba(255,255,255,.58); font-size: 20px; }
.core-main h3 {
  grid-column: 2;
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: #efe9ff;
  align-self: start;
}
.core-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
}
.core-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(225,239,255,.9);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(47,125,255,.13);
  border: 1px solid rgba(105,155,255,.2);
}
.core-main p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(226,232,255,.86);
  font-size: 13px;
  line-height: 1.58;
  text-align: left;
  background: linear-gradient(135deg, rgba(47,125,255,.12), rgba(122,60,255,.09));
  border: 1px solid rgba(140,174,255,.12);
}

.status-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 15px;
}

.status-row span, .ai-chip {
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #d8efff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(47,125,255,.13);
  border: 1px solid rgba(47,125,255,.28);
}

.contact-actions {
  display: flex;
  gap: 8px;
  flex: none;
}

.contact-actions button {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(122,60,255,.88), rgba(47,125,255,.88));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 20px rgba(122,60,255,.28);
}

.contact-actions button img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  transform: translate(-50%, -50%);
  opacity: 1;
  filter: brightness(1.45) contrast(1.18) drop-shadow(0 0 2px rgba(255,255,255,.45));
}

.energy-line {
  position: relative;
  z-index: 1;
  height: 2px;
  margin-top: 16px;
  background: var(--secondary);
  border-radius: 999px;
  box-shadow: var(--shadow-a);
}

.section-title { margin: 30px 0 16px; }
.section-title span, .page-head span { color: #9fc7ff; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.section-title h2, .page-head h1 { margin: 6px 0 0; font-size: 22px; line-height: 1.18; }
.section-title p, .page-head p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.section-title:not(:has(p)) { margin-bottom: 14px; }

.value-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.value-card {
  min-height: 128px;
  padding: 14px 8px 12px;
  border-radius: var(--radius-lg);
}

.value-card b {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.28;
}

.value-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--weak);
  font-size: 10px;
  line-height: 1.35;
}

.progress-line {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(177,92,255,.9), rgba(24,215,255,.25));
}

html[lang="en"] .value-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
html[lang="en"] .value-card { min-height: 138px; }

.film-gallery {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 0 18px 6px;
  margin: 0 -18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.film-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-preview-loading {
  min-width: 150px;
  min-height: 120px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--weak);
  font-size: 12px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.1);
}

.film-card {
  position: relative;
  margin: 0;
  flex: 0 0 120px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #11182b;
  scroll-snap-align: start;
}

.film-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.film-card::after { content: ""; position: absolute; inset: auto 0 0; height: 52%; background: linear-gradient(180deg, transparent, rgba(0,0,0,.82)); }
.film-card figcaption { position: absolute; z-index: 1; left: 10px; right: 8px; bottom: 9px; }
.film-card b { display: block; font-size: 14px; line-height: 1.1; font-weight: 900; letter-spacing: 0; }
.film-card small { display: none; }

.film-title {
  margin: 34px 0 18px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.film-title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: 0;
}

.film-title h2 span {
  color: rgba(255,255,255,.58);
  font-size: 22px;
  vertical-align: 1px;
}

.gallery-entry {
  position: relative;
  flex: 0 0 auto;
  min-width: 68px;
  min-height: 36px;
  padding: 0 9px 0 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(239,242,255,.88);
  background:
    linear-gradient(135deg, rgba(134,87,255,.11), rgba(69,113,255,.045)),
    rgba(255,255,255,.035);
  border: 1px solid rgba(177,146,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 16px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gallery-entry span {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.gallery-entry i {
  margin-top: -1px;
  color: rgba(197,178,255,.88);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.gallery-entry:hover {
  color: #fff;
  border-color: rgba(191,166,255,.36);
  background-color: rgba(255,255,255,.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 7px 18px rgba(0,0,0,.14);
}
.gallery-entry:focus-visible { outline: 2px solid rgba(177,146,255,.62); outline-offset: 2px; }
.gallery-entry:active { transform: scale(.97); }

.gallery-space-content {
  min-height: 100%;
  padding-bottom: 118px;
}

.gallery-space-back {
  min-height: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  touch-action: manipulation;
}

.gallery-space-back > span:first-child {
  margin-top: -2px;
  font-size: 23px;
  line-height: 1;
}

.gallery-space-head {
  position: relative;
  margin: 4px 0 22px;
  padding: 22px 18px 19px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(24,215,255,.12), transparent 31%),
    radial-gradient(circle at 12% 0%, rgba(122,60,255,.23), transparent 43%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}

.gallery-space-head::after {
  content: "";
  position: absolute;
  width: 126px;
  height: 126px;
  right: -56px;
  bottom: -76px;
  border-radius: 50%;
  border: 1px solid rgba(177,92,255,.18);
  box-shadow: 0 0 42px rgba(47,125,255,.12);
  pointer-events: none;
}

.gallery-space-heading {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.gallery-space-heading h1 { margin: 0; font-size: 29px; letter-spacing: -.02em; }
.gallery-space-heading p { max-width: 255px; margin-top: 9px; }

.gallery-published-stat {
  min-width: 58px;
  padding: 9px 7px 8px;
  border-radius: 18px;
  text-align: center;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.09);
}

.gallery-published-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-published-stat span {
  display: block;
  margin-top: 5px;
  color: var(--weak);
  font-size: 9px;
  letter-spacing: 0;
  white-space: nowrap;
}

.gallery-masonry {
  column-count: 2;
  column-gap: 10px;
}

.gallery-card {
  position: relative;
  width: 100%;
  margin: 0 0 10px;
  display: inline-block;
  break-inside: avoid;
  overflow: hidden;
  vertical-align: top;
  border-radius: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(122,60,255,.1), transparent 35%),
    rgba(255,255,255,.048);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, border-color .18s ease;
}

.gallery-card:hover { border-color: rgba(153,124,255,.32); }
.gallery-card:active { transform: scale(.985); }
.gallery-card img { width: 100%; height: auto; display: block; object-fit: contain; background: #090b19; }
.gallery-card figcaption,
.gallery-card .gallery-card__title {
  display: block;
  padding: 10px 11px 11px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.gallery-card figcaption b {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gallery-empty {
  padding: 34px 18px;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.12);
}

.cooperation-pipeline { margin: 30px 0 0; }
.section-title-row {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.section-title-row h2 { margin: 0; font-size: 26px; line-height: 1.16; letter-spacing: 0; }
.ppt-download {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  color: rgba(255,255,255,.94);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  background: linear-gradient(135deg, rgba(122,60,255,.34), rgba(47,125,255,.22));
  border: 1px solid rgba(161,126,255,.38);
  box-shadow: 0 10px 24px rgba(32,46,128,.24), inset 0 1px 0 rgba(255,255,255,.12);
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ppt-download svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ppt-download:hover {
  border-color: rgba(99,211,255,.6);
  box-shadow: 0 12px 28px rgba(47,125,255,.28), inset 0 1px 0 rgba(255,255,255,.16);
}
.ppt-download:active { transform: scale(.97); }
.ppt-download:focus-visible { outline: 2px solid rgba(75,220,255,.86); outline-offset: 3px; }
.pipeline-list { display: flex; flex-direction: column; gap: 18px; }
.pipeline-card {
  position: relative;
  min-height: 162px;
  padding: 16px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 82% 4%, rgba(122,60,255,.1), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 42px rgba(0,0,0,.26);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pipeline-card:active { transform: scale(.985); }
.pipeline-card:hover { border-color: rgba(133,89,255,.36); box-shadow: 0 18px 44px rgba(47,125,255,.16); }
.pipeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1.7px);
  background-size: 10px 10px;
  opacity: .05;
}
.pipeline-card.is-featured {
  border-color: rgba(139,84,255,.64);
  box-shadow: 0 0 0 1px rgba(139,84,255,.18), 0 0 34px rgba(122,60,255,.23), 0 20px 46px rgba(0,0,0,.32);
  background:
    radial-gradient(circle at 0% 40%, rgba(122,60,255,.26), transparent 44%),
    linear-gradient(100deg, rgba(64,37,112,.78), rgba(255,255,255,.055) 48%, rgba(255,255,255,.035));
}
.pipeline-card.is-featured::before { opacity: .14; background-size: 8px 8px; }
.pipeline-card__image {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 16px 26px rgba(0,0,0,.26);
}
.pipeline-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.pipeline-card:not(.is-featured) .pipeline-card__image img {
  transform: scale(1.16) translateY(-7px);
  transform-origin: center top;
}
.pipeline-card__content { position: relative; z-index: 1; min-width: 0; }
.pipeline-card__number {
  display: block;
  margin: -18px 0 -23px;
  padding-top: 18px;
  font-family: "DINCondensedBold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 64px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .95;
  background: linear-gradient(180deg, #ffffff 0%, #eef0f5 24%, #b6bac5 50%, rgba(80,86,102,.78) 72%, rgba(28,32,44,.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 12px rgba(0,0,0,.2);
}
.pipeline-card__content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 950;
  color: #fff;
  letter-spacing: 0;
}
.pipeline-card__content p {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.pipeline-card__bottom {
  margin-top: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.pipeline-card__tags {
  min-width: 0;
  display: flex;
  gap: 3px;
  overflow: hidden;
}
.pipeline-card__tags span {
  flex: 1 1 0;
  min-width: 0;
  height: 25px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.055);
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pipeline-card__button {
  width: 62px;
  height: 32px;
  padding: 0 7px 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: #20222b;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  transition: transform .16s ease;
}
.pipeline-card__button:active { transform: scale(.96); }
.pipeline-card__button i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 0 16px rgba(122,60,255,.48);
}

.assessment-panel { margin-top: 28px; padding: 18px; }
.orb-wrap { position: relative; z-index: 1; height: 250px; border-radius: 20px; overflow: hidden; }
.orb-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.assessment-copy { position: relative; z-index: 1; margin-top: 16px; text-align: center; }
.assessment-copy h2 { margin: 8px 0 0; font-size: 24px; }
.assessment-copy p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0; }
.metrics span { padding: 10px 6px; border-radius: 14px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.35; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.metrics b { display: block; color: #fff; font-size: 13px; margin-bottom: 3px; }
.metrics em { font-style: normal; }

.resource-constellation { margin-top: 32px; }
.resource-constellation__heading {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
}
.resource-constellation__heading h2 { font-size: 26px; }
.resource-map-shell {
  position: relative;
  padding: 0 0 9px;
  overflow: hidden;
  border-radius: 24px;
  border-color: rgba(205,214,228,.11);
  background:
    radial-gradient(circle at 18% 5%, rgba(117,136,160,.07), transparent 35%),
    linear-gradient(152deg, rgba(13,18,27,.99), rgba(4,8,14,.998));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 24px 58px rgba(1,4,13,.4);
}
.resource-map-shell::before {
  display: none;
}
.resource-map-shell::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  right: -138px;
  bottom: -34px;
  border-radius: 50%;
  background: rgba(95,123,160,.055);
  filter: blur(64px);
  pointer-events: none;
}
.resource-map-shell > * { position: relative; z-index: 1; }
.resource-map-stage {
  position: relative;
  height: 488px;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 23px 23px 0 0;
  border: 0;
  background:
    radial-gradient(ellipse at 78% 14%, rgba(55,91,145,.14), transparent 48%),
    radial-gradient(ellipse at 16% 76%, rgba(148,170,202,.11), transparent 44%),
    linear-gradient(155deg, #080d14 0%, #03070c 56%, #010409 100%);
  box-shadow: inset 0 0 82px rgba(1,4,10,.38), inset 0 1px 0 rgba(255,255,255,.025);
}
.resource-map-stage::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -20% -26%;
  border-radius: 48%;
  background:
    radial-gradient(ellipse at 32% 68%, rgba(187,202,221,.1), transparent 34%),
    radial-gradient(ellipse at 70% 38%, rgba(94,126,169,.085), transparent 40%);
  filter: blur(24px);
  transform: rotate(-8deg);
  pointer-events: none;
}
.resource-map-stage::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.014), inset 0 0 54px rgba(1,4,10,.24), inset 0 -42px 64px rgba(1,3,9,.18);
  pointer-events: none;
}
#resourceGraphCanvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#resourceGraphCanvas.is-dragging { cursor: grabbing; }
#resourceGraphCanvas:focus-visible {
  outline: 1px solid rgba(219,197,148,.62);
  outline-offset: -4px;
  border-radius: 20px;
}

.resource-map-toolbar {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: auto;
  min-height: 31px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: rgba(232,238,255,.72);
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}
.resource-map-toolbar > span {
  min-width: 0;
  height: 30px;
  padding: 0 10px 0 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  color: rgba(224,228,237,.52);
  background: rgba(5,8,14,.58);
  border: 1px solid rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  transition: opacity .28s ease, transform .28s ease;
}
.resource-map-toolbar > span.is-dismissed { opacity: 0; transform: translateY(-4px); }
.resource-map-toolbar > span i { color: rgba(209,219,231,.7); font-size: 11px; font-style: normal; }
.resource-map-toolbar > span b { overflow: hidden; font-size: 8px; font-weight: 750; line-height: 1.2; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; }
.resource-map-toolbar > div {
  flex: 0 0 auto;
  height: 35px;
  padding: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 999px;
  background: rgba(5,8,14,.68);
  border: 1px solid rgba(255,255,255,.065);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}
.resource-map-toolbar output {
  min-width: 34px;
  color: rgba(232,236,242,.58);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.resource-map-toolbar button {
  min-width: 31px;
  width: 31px;
  height: 31px;
  padding: 0;
  border-radius: 50%;
  color: rgba(240,238,231,.62);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 750;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.resource-map-toolbar button:hover { color: rgba(249,241,220,.92); background: rgba(255,255,255,.055); }
.resource-map-toolbar button:active { transform: scale(.96); }

.resource-graph-legend {
  margin-top: 0;
  padding: 10px 8px 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.055);
}
.resource-graph-legend button {
  min-width: 0;
  min-height: 35px;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  color: rgba(224,229,238,.48);
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(255,255,255,.048);
  font-size: 8.3px;
  font-weight: 750;
  text-align: center;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .16s ease;
}
.resource-graph-legend button i {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--resource-color);
  box-shadow: 0 0 7px color-mix(in srgb, var(--resource-color) 68%, transparent);
}
.resource-graph-legend button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.resource-graph-legend button.active {
  color: rgba(249,248,244,.97);
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.028));
  border-color: rgba(231,235,241,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 5px 12px rgba(0,0,0,.14);
}
.resource-graph-legend__all { font-weight: 900; }
.resource-graph-legend button:active { transform: scale(.98); }

.resource-node-detail {
  position: absolute;
  z-index: 6;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 12px 13px 13px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(20,25,34,.94), rgba(7,11,18,.96));
  border: 1px solid rgba(199,209,223,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 12px 28px rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .28s ease, transform .36s cubic-bezier(.2,.75,.2,1);
}
.resource-node-detail.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.resource-node-detail__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.resource-node-detail__top span {
  min-width: 0;
  overflow: hidden;
  color: rgba(215,188,131,.82);
  font-size: 8.5px;
  font-weight: 950;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.resource-node-detail__top button {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.045);
  font-size: 14px;
  line-height: 1;
}
.resource-node-detail h3 { margin: 5px 0 0; color: rgba(249,247,241,.96); font-size: 15px; line-height: 1.35; }
.resource-node-detail p {
  margin: 4px 0 0;
  overflow: hidden;
  color: rgba(222,226,236,.48);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 10.5px;
  line-height: 1.5;
}
.resource-map-disclaimer {
  margin: 9px 3px 1px;
  color: rgba(222,227,236,.42);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.geo-workshop { margin-top: 32px; }
.geo-workshop__heading {
  margin: 0 0 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.geo-workshop__heading > div { min-width: 0; }
.geo-workshop__heading h2 { font-size: 26px; }
.geo-status-pill {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: rgba(225,238,255,.88) !important;
  background: rgba(18,31,65,.82);
  border: 1px solid rgba(94,161,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  letter-spacing: 0 !important;
}
.geo-status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #40edc1;
  box-shadow: 0 0 12px rgba(64,237,193,.82);
}
.geo-status-pill b { font-size: 10px; line-height: 1; white-space: nowrap; }

.geo-console {
  padding: 18px;
  border-color: rgba(104,118,255,.26);
  background:
    radial-gradient(circle at 0% 0%, rgba(130,64,255,.24), transparent 36%),
    radial-gradient(circle at 100% 18%, rgba(25,181,255,.12), transparent 32%),
    linear-gradient(150deg, rgba(17,21,57,.96), rgba(7,10,29,.94));
  box-shadow: 0 22px 54px rgba(0,0,0,.34), 0 0 38px rgba(60,71,217,.13);
}
.geo-console::before { opacity: .18; }
.geo-console::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 210px;
  height: 210px;
  right: -106px;
  top: 42px;
  border-radius: 50%;
  border: 1px solid rgba(83,183,255,.12);
  box-shadow: 0 0 0 24px rgba(117,72,255,.025), 0 0 0 52px rgba(45,143,255,.018);
  pointer-events: none;
}
.geo-intro,
.geo-principles,
.geo-section-label,
.geo-source-grid,
.geo-feed-head,
.geo-exposure-list,
.geo-disclaimer,
.geo-content-hub { position: relative; z-index: 1; }

.geo-intro {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.geo-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(45,164,255,.2) 0 10%, rgba(111,66,255,.17) 11% 40%, rgba(7,11,31,.96) 68%);
  border: 1px solid rgba(119,113,255,.38);
  box-shadow: inset 0 0 22px rgba(62,137,255,.2), 0 0 24px rgba(107,63,255,.17);
}
.geo-orbit::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px dashed rgba(94,214,255,.32);
}
.geo-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 12px;
  top: 18px;
  border-radius: 50%;
  background: #55e6ff;
  box-shadow: 0 0 13px rgba(85,230,255,.92);
  animation: geoSignal 2.8s ease-in-out infinite;
}
.geo-orbit > span {
  position: absolute;
  width: 108%;
  height: 36%;
  border-radius: 50%;
  border: 1px solid rgba(141,107,255,.3);
  transform: rotate(-24deg);
}
.geo-orbit strong {
  position: relative;
  z-index: 2;
  font-size: 21px;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #fff 4%, #a894ff 45%, #45d7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.geo-intro__copy { min-width: 0; }
.geo-kicker {
  display: block;
  color: #6fdcff;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .13em;
}
.geo-intro__copy h3 {
  margin: 7px 0 7px;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.geo-intro__copy p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.62;
}

.geo-principles {
  margin-top: 16px;
  padding: 9px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border-radius: 16px;
  background: rgba(3,8,25,.48);
  border: 1px solid rgba(255,255,255,.07);
}
.geo-principles span {
  min-width: 0;
  padding: 7px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgba(255,255,255,.78);
  border-right: 1px solid rgba(255,255,255,.07);
}
.geo-principles span:last-child { border-right: 0; }
.geo-principles i {
  color: #64dfff;
  font-size: 8px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}
.geo-principles b { min-width: 0; font-size: 10px; white-space: nowrap; }

.geo-section-label,
.geo-feed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.geo-section-label { margin: 18px 0 9px; }
.geo-section-label span,
.geo-feed-head span {
  color: rgba(138,190,255,.68);
  font-size: 8px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .12em;
}
.geo-section-label b,
.geo-feed-head b { color: rgba(255,255,255,.86); font-size: 11px; }
.geo-feed-head > div { display: grid; gap: 3px; }

.geo-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.geo-source-card {
  min-width: 0;
  min-height: 104px;
  padding: 11px 9px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(110,69,255,.12), rgba(255,255,255,.035));
  border: 1px solid rgba(153,128,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.geo-source-card > .geo-source-count {
  min-height: 27px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #79deff;
  line-height: 1;
}
.geo-source-count > strong {
  margin: 0;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, #ba73ff, #47d7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.geo-source-count > small {
  color: rgba(160,224,255,.74);
  font-size: 8px;
  font-weight: 900;
}
.geo-source-card > strong { margin-top: 8px; font-size: 11px; line-height: 1.25; }
.geo-source-card small { margin-top: 4px; color: rgba(255,255,255,.39); font-size: 8.5px; line-height: 1.45; overflow-wrap: anywhere; }

.geo-feed-head { margin: 18px 0 9px; }
.geo-record-count {
  min-height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #b7a5ff !important;
  background: rgba(122,60,255,.1);
  border: 1px solid rgba(153,116,255,.16);
  font-size: 9px !important;
  letter-spacing: 0 !important;
}
.geo-exposure-list { display: grid; gap: 9px; }
.geo-empty-state {
  padding: 14px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 17px;
  background: rgba(5,10,29,.6);
  border: 1px dashed rgba(111,146,255,.25);
}
.geo-scan-mark {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(104,62,255,.2), rgba(33,160,255,.1));
  border: 1px solid rgba(122,127,255,.24);
}
.geo-scan-mark::before,
.geo-scan-mark::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(102,219,255,.42);
}
.geo-scan-mark::after { inset: 21px; background: #65e9ff; border: 0; box-shadow: 0 0 15px rgba(101,233,255,.74); }
.geo-scan-mark i {
  position: absolute;
  z-index: 2;
  left: 8px;
  right: 8px;
  top: 11px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7eeaff, transparent);
  box-shadow: 0 0 8px rgba(126,234,255,.8);
  animation: geoScan 2.6s ease-in-out infinite;
}
.geo-empty-state__copy { min-width: 0; }
.geo-empty-state__copy > strong { display: block; font-size: 13px; line-height: 1.35; }
.geo-empty-state__copy > p { margin: 5px 0 8px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.52; }
.geo-scope-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.geo-scope-chips span {
  padding: 4px 6px;
  border-radius: 999px;
  color: rgba(224,230,255,.7);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 8px;
  line-height: 1;
}
.geo-standards-button {
  min-height: 44px;
  margin-top: 7px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #80ddff;
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  text-align: left;
}
.geo-standards-button i { font-size: 17px; line-height: 1; font-style: normal; transition: transform .18s ease; }
.geo-standards-button:hover i { transform: translateX(3px); }
.geo-standards-button:focus-visible { outline: 2px solid rgba(75,220,255,.8); outline-offset: 3px; border-radius: 6px; }

.geo-record {
  padding: 13px;
  border-radius: 17px;
  background: rgba(5,10,29,.66);
  border: 1px solid rgba(124,137,255,.17);
}
.geo-record__top,
.geo-record__source,
.geo-record__bottom { display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.geo-record__type,
.geo-record__verified {
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
}
.geo-record__type { color: #baa8ff; background: rgba(122,60,255,.11); border: 1px solid rgba(151,113,255,.16); }
.geo-record__verified { color: #5be5bb; background: rgba(58,218,171,.08); border: 1px solid rgba(58,218,171,.14); }
.geo-record__source { margin-top: 10px; align-items: baseline; }
.geo-record__source strong { font-size: 11px; }
.geo-record__source small { color: rgba(255,255,255,.32); font-size: 8px; }
.geo-record h4 { margin: 8px 0 0; font-size: 14px; line-height: 1.42; }
.geo-record > p { margin: 6px 0 0; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.52; }
.geo-record__bottom { margin-top: 11px; color: rgba(255,255,255,.36); font-size: 9px; }
.geo-record__bottom a { min-height: 44px; display: inline-flex; align-items: center; color: #78dcff; text-decoration: none; font-weight: 900; }
.geo-record__bottom a:focus-visible { outline: 2px solid rgba(75,220,255,.8); outline-offset: 2px; border-radius: 6px; }
.geo-disclaimer { margin: 12px 2px 0; color: rgba(255,255,255,.28); font-size: 8.5px; line-height: 1.5; }

.geo-trust-empty {
  min-height: 88px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(10,17,43,.82), rgba(5,9,28,.72));
  border: 1px dashed rgba(102,160,255,.23);
}
.geo-trust-empty > i {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #4aebc2;
  background: rgba(57,222,179,.09);
  border: 1px solid rgba(57,222,179,.18);
  box-shadow: 0 0 18px rgba(57,222,179,.08);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}
.geo-trust-empty strong { display: block; font-size: 12px; line-height: 1.4; }
.geo-trust-empty p { margin: 5px 0 0; color: rgba(255,255,255,.45); font-size: 9.5px; line-height: 1.55; }
.geo-trust-empty.is-compact { min-height: 0; }

.geo-content-hub {
  margin-top: 18px;
  padding: 15px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, rgba(46,184,255,.12), transparent 32%),
    linear-gradient(145deg, rgba(102,58,221,.17), rgba(5,10,30,.78) 58%);
  border: 1px solid rgba(139,104,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 15px 35px rgba(0,0,0,.18);
}
.geo-content-hub::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, #a94eff, #448cff, #33e7d8);
  opacity: .82;
}
.geo-content-hub__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.geo-content-hub__head > div { min-width: 0; }
.geo-content-hub__head span {
  display: block;
  color: #78ccff;
  font-size: 8px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: .13em;
}
.geo-content-hub__head h4 { margin: 4px 0 0; font-size: 14px; }
.geo-content-hub__head > strong {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 999px;
  color: #c6b7ff;
  background: rgba(131,76,255,.13);
  border: 1px solid rgba(161,121,255,.18);
  font-size: 8px;
  line-height: 1;
}
.geo-content-hub > h5 { margin: 13px 0 0; font-size: 15px; line-height: 1.42; text-wrap: balance; }
.geo-content-hub > p { margin: 7px 0 0; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.6; }
.geo-article-preview-list { margin-top: 13px; display: grid; gap: 7px; }
.geo-article-preview {
  position: relative;
  width: 100%;
  min-height: 94px;
  padding: 11px 32px 11px 11px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  color: #fff;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.geo-article-preview:hover { transform: translateY(-1px); border-color: rgba(100,205,255,.27); background: rgba(75,93,197,.1); }
.geo-article-preview > span { display: flex; align-items: center; gap: 6px; }
.geo-article-preview > span b,
.geo-article-preview > span em {
  padding: 4px 6px;
  border-radius: 999px;
  font-size: 7.5px;
  line-height: 1;
  font-style: normal;
}
.geo-article-preview > span b { color: #50e7c0; background: rgba(48,221,177,.08); border: 1px solid rgba(48,221,177,.14); }
.geo-article-preview > span em { color: #b9a7ff; background: rgba(132,74,255,.1); }
.geo-article-preview > strong { display: block; margin-top: 7px; font-size: 11.5px; line-height: 1.42; }
.geo-article-preview > p { margin: 5px 0 0; display: -webkit-box; overflow: hidden; color: rgba(255,255,255,.4); font-size: 9px; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.geo-article-preview > i { position: absolute; right: 13px; top: 50%; color: #69d7ff; font-size: 21px; font-style: normal; transform: translateY(-50%); }
.geo-article-preview:focus-visible,
.geo-hub-enter:focus-visible { outline: 2px solid rgba(75,220,255,.8); outline-offset: 2px; }
.geo-hub-enter {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(100deg, rgba(125,56,255,.9), rgba(48,127,255,.9));
  box-shadow: 0 10px 24px rgba(64,73,232,.22);
  font-size: 11px;
  font-weight: 950;
}
.geo-hub-enter i { font-size: 18px; line-height: 1; font-style: normal; }

#home .geo-workshop { margin-top: 27px; }
#home .geo-workshop__heading {
  margin-bottom: 10px;
  align-items: center;
}
#home .geo-workshop__heading h2 { font-size: 24px; }
#home .geo-status-pill {
  min-height: 28px;
  padding: 0 9px;
  gap: 6px;
}
#home .geo-status-pill i { width: 6px; height: 6px; }
#home .geo-status-pill b { font-size: 9px; }
#home .geo-console--compact {
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 4% 0%, rgba(119,64,246,.18), transparent 40%),
    linear-gradient(150deg, rgba(16,21,53,.94), rgba(7,11,29,.96));
  box-shadow: 0 16px 38px rgba(0,0,0,.28), 0 0 24px rgba(67,76,218,.08);
}
#home .geo-console--compact::after {
  width: 150px;
  height: 150px;
  right: -84px;
  top: 18px;
  opacity: .7;
}
#home .geo-console--compact .geo-intro {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 11px;
}
#home .geo-console--compact .geo-orbit {
  width: 64px;
  height: 64px;
}
#home .geo-console--compact .geo-orbit::before { inset: 7px; }
#home .geo-console--compact .geo-orbit::after {
  width: 6px;
  height: 6px;
  right: 8px;
  top: 13px;
}
#home .geo-console--compact .geo-orbit strong { font-size: 17px; }
#home .geo-console--compact .geo-kicker {
  font-size: 7px;
  letter-spacing: .12em;
}
#home .geo-console--compact .geo-intro__copy h3 {
  margin: 5px 0 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.32;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#home .geo-console--compact .geo-intro__copy p { display: none; }
#home .geo-source-grid--compact {
  margin-top: 13px;
  gap: 6px;
}
#home .geo-source-grid--compact .geo-source-card {
  min-height: 68px;
  padding: 9px 8px;
  justify-content: center;
  border-radius: 13px;
}
#home .geo-source-grid--compact .geo-source-card > .geo-source-count { min-height: 21px; }
#home .geo-source-grid--compact .geo-source-count > strong { font-size: 20px; }
#home .geo-source-grid--compact .geo-source-card > strong {
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: 9.5px;
}
#home .geo-hub-enter--compact {
  min-height: 40px;
  margin-top: 11px;
  border-radius: 12px;
  background: linear-gradient(105deg, rgba(111,59,238,.82), rgba(48,118,239,.82));
  box-shadow: 0 8px 18px rgba(64,73,232,.16);
  font-size: 10.5px;
}

.geo-hub-principles {
  margin-top: 11px;
  padding-top: 11px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.geo-hub-principles span {
  min-width: 0;
  min-height: 35px;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 11px;
  color: rgba(255,255,255,.72);
  background: rgba(5,9,29,.42);
  border: 1px solid rgba(255,255,255,.055);
}
.geo-hub-principles i {
  color: #64dfff;
  font-size: 8px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}
.geo-hub-principles b {
  min-width: 0;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.geo-hub-disclaimer {
  margin: 11px 2px 0;
  color: rgba(255,255,255,.3);
  font-size: 8.5px;
  line-height: 1.55;
}

.geo-hub-page { padding-bottom: 126px; }
.geo-page-tools { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.geo-page-tools .back { margin-bottom: 14px; }
.geo-page-language {
  min-width: 61px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  color: rgba(240,245,255,.92);
  background: rgba(18,27,58,.88);
  border: 1px solid rgba(113,152,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: 10px;
}
.geo-page-language span { color: #61ddff; }
.geo-page-language b { font-size: 10px; }
.geo-hub-page-head {
  margin-bottom: 26px;
  padding: 21px 18px 18px;
  overflow: hidden;
  border-color: rgba(126,105,255,.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(59,164,255,.17), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(128,58,255,.16), transparent 42%),
    rgba(11,15,41,.88);
}
.geo-hub-page-head::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -36px;
  top: -40px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(79,205,255,.13);
  box-shadow: 0 0 0 18px rgba(102,70,255,.025), 0 0 0 38px rgba(77,177,255,.018);
}
.geo-hub-page-head > * { position: relative; z-index: 1; }
.geo-hub-page-head > span { color: #78caff; font-size: 9px; font-weight: 950; letter-spacing: .16em; }
.geo-hub-page-head h1 { margin: 9px 0 0; font-size: 27px; line-height: 1.2; }
.geo-hub-page-head > p { margin: 10px 0 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.66; }
.geo-page-stats { margin-top: 17px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.geo-page-stats > span { min-width: 0; padding: 12px 8px; border-radius: 15px; background: rgba(5,9,29,.52); border: 1px solid rgba(255,255,255,.075); }
.geo-page-stats b { display: block; color: #65ddff; font-size: 22px; line-height: 1; }
.geo-page-stats small { display: block; margin-top: 6px; color: rgba(255,255,255,.5); font-size: 8.5px; line-height: 1.3; }
.geo-hub-section { margin-top: 28px; }
.geo-hub-section__head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; margin-bottom: 13px; }
.geo-hub-section__head span { display: block; color: #82c8ff; font-size: 8.5px; font-weight: 950; letter-spacing: .14em; }
.geo-hub-section__head h2 { margin: 4px 0 0; font-size: 21px; line-height: 1.28; }
.geo-hub-section__head > p { margin: 0; color: rgba(255,255,255,.43); font-size: 10px; line-height: 1.55; }
.geo-hub-exposure-list,
.geo-article-list { display: grid; gap: 10px; }
.geo-source-grid--hub { margin-bottom: 12px; }
.geo-source-grid--hub .geo-source-card {
  min-height: 98px;
  background: linear-gradient(155deg, rgba(80,67,168,.1), rgba(255,255,255,.025));
}
.geo-hub-insight-intro {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 96% 0%, rgba(46,184,255,.09), transparent 35%),
    rgba(47,55,123,.08);
  border-color: rgba(122,131,255,.14);
}
.geo-hub-insight-intro > * { position: relative; z-index: 1; }
.geo-hub-insight-intro strong {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.45;
}
.geo-hub-insight-intro p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.44);
  font-size: 9.5px;
  line-height: 1.62;
}
.geo-topic-filters {
  margin: -2px -18px 13px;
  padding: 2px 18px 3px;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}
.geo-topic-filters::-webkit-scrollbar { display: none; }
.geo-topic-filters button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 9.5px;
  font-weight: 850;
}
.geo-topic-filters button b { margin-left: 3px; color: rgba(126,216,255,.72); }
.geo-topic-filters button.active { color: #fff; background: linear-gradient(110deg, rgba(128,58,255,.56), rgba(45,126,255,.5)); border-color: rgba(129,148,255,.32); }
.geo-article-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20,22,57,.9), rgba(7,10,29,.93));
  border: 1px solid rgba(126,123,255,.17);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.geo-article-card.is-expanded { border-color: rgba(102,182,255,.3); box-shadow: 0 17px 40px rgba(0,0,0,.25), 0 0 28px rgba(82,82,239,.08); }
.geo-article-summary {
  width: 100%;
  padding: 15px;
  display: block;
  color: #fff;
  background: transparent;
  text-align: left;
}
.geo-article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.geo-article-meta b,
.geo-article-meta em {
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 8px;
  line-height: 1;
  font-style: normal;
}
.geo-article-meta b { color: #4ee7bf; background: rgba(48,221,177,.08); border: 1px solid rgba(48,221,177,.14); }
.geo-article-meta em { color: #c1b2ff; background: rgba(132,74,255,.1); border: 1px solid rgba(151,104,255,.13); }
.geo-article-meta small { margin-left: auto; color: rgba(255,255,255,.3); font-size: 8px; }
.geo-article-summary > strong { display: block; margin-top: 10px; font-size: 16px; line-height: 1.42; letter-spacing: -.01em; }
.geo-article-summary > p { margin: 7px 0 0; color: rgba(255,255,255,.49); font-size: 10px; line-height: 1.6; }
.geo-article-tags { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 5px; }
.geo-article-tags i { padding: 4px 7px; border-radius: 999px; color: rgba(217,224,255,.55); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.065); font-size: 7.5px; line-height: 1; font-style: normal; }
.geo-article-toggle { margin-top: 13px; padding-top: 11px; display: flex; align-items: center; justify-content: space-between; color: #6ddaff; border-top: 1px solid rgba(255,255,255,.065); font-size: 9.5px; font-weight: 900; }
.geo-article-toggle i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: rgba(84,139,255,.16); font-size: 13px; line-height: 1; font-style: normal; }
.geo-article-body {
  max-height: 0;
  padding: 0 15px;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid transparent;
  transition: max-height .45s ease, opacity .3s ease, padding .3s ease, border-color .3s ease;
}
.geo-article-card.is-expanded .geo-article-body { max-height: 2200px; padding: 4px 15px 17px; opacity: 1; border-top-color: rgba(255,255,255,.055); }
.geo-article-body p { margin: 12px 0 0; color: rgba(242,245,255,.67); font-size: 11px; line-height: 1.82; }
.geo-governance {
  margin-top: 28px;
  padding: 18px;
  border-color: rgba(99,198,255,.19);
  background: linear-gradient(145deg, rgba(22,33,65,.82), rgba(7,11,29,.9));
}
.geo-governance > * { position: relative; z-index: 1; }
.geo-governance > span { color: #70d6ff; font-size: 8.5px; font-weight: 950; letter-spacing: .15em; }
.geo-governance h2 { margin: 7px 0 0; font-size: 19px; }
.geo-governance p { margin: 8px 0 0; color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.64; }
.geo-governance button { width: 100%; min-height: 43px; margin-top: 13px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; border-radius: 13px; color: #74ddff; background: rgba(68,146,255,.08); border: 1px solid rgba(92,183,255,.14); font-size: 10px; font-weight: 900; }
.geo-governance button i { font-size: 17px; font-style: normal; }

@media (max-width: 374px) {
  .geo-intro { grid-template-columns: 76px minmax(0, 1fr); gap: 11px; }
  .geo-orbit { width: 76px; height: 76px; }
  .geo-intro__copy h3 { font-size: 17px; }
  .geo-source-card { padding: 10px 7px; }
  .geo-source-count > strong { font-size: 22px; }
  .geo-content-hub { padding: 13px; }
  .geo-hub-page-head { padding: 18px 15px 16px; }
  .geo-hub-page-head h1 { font-size: 24px; }
}

.faq-list { display: grid; gap: 10px; }
.faq-item { padding: 0; border-radius: var(--radius-lg); }
.faq-q { position: relative; z-index: 1; width: 100%; min-height: 58px; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; background: transparent; text-align: left; font-size: 14px; font-weight: 900; }
.faq-a { position: relative; z-index: 1; max-height: 0; overflow: hidden; padding: 0 16px; color: var(--muted); font-size: 13px; line-height: 1.65; transition: max-height .26s ease, padding .26s ease; }
.faq-item.open { border-color: rgba(133,89,255,.52); box-shadow: var(--shadow-a); }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 16px; }

.connect-card { margin-top: 28px; padding: 20px; text-align: center; }
.connect-card h2 { position: relative; z-index: 1; margin: 0; font-size: 22px; }
.connect-card p { position: relative; z-index: 1; color: var(--muted); font-size: 13px; }
.connect-actions { position: relative; z-index: 1; display: grid; gap: 10px; }

.page-head { margin-bottom: 22px; }
.page-head.compact { margin-top: 0; }
.back { height: 34px; padding: 0 13px; margin-bottom: 16px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.about-view {
  overflow-x: hidden;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 84% 3%, rgba(55,121,255,.2), transparent 24%),
    radial-gradient(circle at 8% 34%, rgba(119,59,255,.14), transparent 30%),
    linear-gradient(180deg, #050714 0%, #070a1e 44%, #040610 100%);
}
.about-page-content { padding-right: 14px; padding-left: 14px; }
.about-page-toolbar {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 4px 16px;
}
.about-story-back { z-index: 1; margin: 0; }
.about-share-button {
  min-width: 72px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(139,181,255,.2);
  border-radius: 999px;
  background: rgba(44,74,143,.18);
  color: rgba(225,236,255,.82);
  backdrop-filter: blur(14px);
}
.about-share-button span { color: #79cfff; font-size: 15px; line-height: 1; }
.about-share-button b { font-size: 11px; }
.about-story-root { position: relative; min-width: 0; }
.about-story-root::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 590px;
  right: -80px;
  width: 210px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(45,122,255,.14), transparent 68%);
  pointer-events: none;
}
.about-story-hero {
  position: relative;
  isolation: isolate;
  height: 600px;
  height: clamp(560px, 70svh, 630px);
  overflow: hidden;
  border: 1px solid rgba(176,199,255,.18);
  border-radius: 30px;
  background: #070a16;
  box-shadow: 0 28px 80px rgba(0,0,0,.45), 0 0 42px rgba(62,103,255,.12);
}
.about-story-hero__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(.88) contrast(1.07) brightness(.84);
  transform: scale(1.035);
}
.about-story-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3,5,14,.12) 0%, rgba(3,5,14,.06) 30%, rgba(4,6,16,.5) 58%, rgba(4,6,16,.98) 100%),
    linear-gradient(90deg, rgba(5,8,21,.3), transparent 64%);
}
.about-story-hero__glow {
  position: absolute;
  z-index: -3;
  right: -94px;
  bottom: 64px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,133,255,.38), rgba(119,55,255,.12) 38%, transparent 68%);
  filter: blur(8px);
}
.about-story-hero__identity {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  gap: 5px;
}
.about-story-hero__identity > span,
.about-story-eyebrow {
  color: #9ecbff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: .2em;
}
.about-story-hero__identity > strong { font-size: 17px; line-height: 1.1; }
.about-story-hero__identity > small { color: rgba(255,255,255,.56); font-size: 10px; }
.about-story-hero__copy {
  position: absolute;
  right: 22px;
  bottom: 28px;
  left: 22px;
}
.about-story-hero__copy > p {
  margin: 0 0 12px;
  color: rgba(184,211,255,.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.about-story-hero__copy h1 {
  margin: 0;
  max-width: 344px;
  font-size: clamp(34px, 9.7vw, 42px);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.about-story-hero__copy h1 span { display: block; }
.about-story-hero__copy > b {
  display: block;
  margin-top: 17px;
  padding-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.18);
}
.about-chapter-nav {
  position: sticky;
  top: 0;
  z-index: 11;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  min-height: 58px;
  margin: 12px -2px 0;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(7,10,25,.84);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(20px);
}
.about-chapter-nav button {
  position: relative;
  display: grid;
  place-content: center;
  gap: 2px;
  min-width: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 850;
  outline: none;
}
.about-chapter-nav button:focus-visible { outline: 2px solid rgba(126,207,255,.72); outline-offset: -3px; }
.about-chapter-nav button span { color: rgba(145,194,255,.54); font-size: 7px; letter-spacing: .12em; }
.about-chapter-nav button::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a34fff, #2e8cff, #3ce5db);
  transform: scaleX(0);
  transition: transform .24s ease;
}
.about-chapter-nav button.is-current { color: rgba(255,255,255,.96); background: rgba(255,255,255,.055); }
.about-chapter-nav button.is-current::after { transform: scaleX(1); }
.about-story-section { margin-top: 68px; scroll-margin-top: 78px; }
.about-story-heading h2 {
  margin: 8px 0 0;
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.about-story-heading > p {
  margin: 12px 0 0;
  max-width: 340px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.78;
}
.about-proof { margin-top: 34px; }
.about-proof-heading h2 { max-width: 350px; font-size: 30px; }
.about-proof-panel {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 10px 10px 20px;
  border: 1px solid rgba(146,174,255,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 44%, rgba(72,75,255,.22), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(38,190,255,.13), transparent 25%),
    linear-gradient(155deg, rgba(23,27,67,.93), rgba(6,9,25,.97) 66%);
  box-shadow: 0 28px 72px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.07);
}
.about-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    radial-gradient(circle, rgba(189,211,255,.6) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(95,215,255,.45) 0 1px, transparent 1.5px);
  background-position: 0 0, 17px 21px;
  background-size: 31px 31px, 47px 47px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  pointer-events: none;
}
.about-proof-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -26%;
  right: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(83,170,255,.1), transparent);
  pointer-events: none;
  animation: aboutProofScan 8s ease-in-out infinite;
}
.about-proof-stage {
  position: relative;
  z-index: 2;
  height: 366px;
  isolation: isolate;
}
.about-proof-stage::before,
.about-proof-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.about-proof-stage::before {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(129,164,255,.14);
  box-shadow: inset 0 0 45px rgba(71,91,255,.06), 0 0 52px rgba(49,119,255,.05);
}
.about-proof-stage::after {
  width: 300px;
  height: 190px;
  border: 1px dashed rgba(98,210,255,.12);
  transform: translate(-50%, -50%) rotate(-19deg);
  animation: aboutProofOrbit 22s linear infinite;
}
.about-proof-core {
  position: absolute;
  z-index: 5;
  top: calc(50% - 52px);
  left: calc(50% - 52px);
  width: 104px;
  height: 104px;
  padding: 0 13px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(177,203,255,.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(141,92,255,.35), transparent 40%),
    linear-gradient(145deg, rgba(25,31,82,.96), rgba(6,10,29,.98));
  box-shadow: 0 0 0 8px rgba(79,90,255,.055), 0 0 42px rgba(65,107,255,.3), inset 0 1px 0 rgba(255,255,255,.15);
  text-align: center;
  animation: aboutProofCore 4.8s ease-in-out infinite;
}
.about-proof-core small { color: rgba(194,214,255,.62); font-size: 8px; line-height: 1.35; letter-spacing: .08em; }
.about-proof-core strong { font-size: 14px; line-height: 1.25; letter-spacing: .02em; }
.about-proof-stat {
  position: absolute;
  z-index: 3;
  width: 126px;
  height: 112px;
  padding: 13px 10px 11px;
  display: grid;
  place-content: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(164,184,255,.24);
  border-radius: 52% 48% 46% 54% / 49% 53% 47% 51%;
  background:
    radial-gradient(circle at 38% 20%, rgba(151,93,255,.23), transparent 45%),
    linear-gradient(145deg, rgba(31,32,76,.94), rgba(9,12,31,.97));
  box-shadow: 0 18px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px rgba(72,88,255,.08);
  text-align: center;
  animation: aboutProofFloat 5.8s ease-in-out infinite alternate;
}
.about-proof-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255,255,255,.09), transparent 34%, transparent 70%, rgba(73,220,255,.07));
  pointer-events: none;
}
.about-proof-stat strong {
  position: relative;
  display: block;
  white-space: nowrap;
  font-family: "DINCondensedBold", "Arial Black", sans-serif;
  font-size: 37px;
  line-height: .94;
  letter-spacing: -.025em;
  background: linear-gradient(115deg, #c895ff 2%, #7b82ff 53%, #54dcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-proof-stat span { position: relative; color: rgba(244,247,255,.77); font-size: 10px; font-weight: 850; line-height: 1.35; }
.about-proof-stat--1 { top: 12px; left: calc(50% - 63px); animation-delay: -.8s; }
.about-proof-stat--2 { top: 126px; right: -2px; animation-delay: -2.6s; }
.about-proof-stat--3 { bottom: 9px; left: calc(50% - 63px); animation-delay: -1.5s; }
.about-proof-stat--4 { top: 126px; left: -2px; animation-delay: -3.7s; }
.about-proof-ray {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(133,118,255,.55), rgba(84,202,255,.13));
  transform-origin: 0 50%;
}
.about-proof-ray::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #73e6ff;
  box-shadow: 0 0 10px rgba(92,215,255,.9);
  animation: aboutProofSignal 3.6s linear infinite;
}
.about-proof-ray--1 { transform: rotate(-90deg); }
.about-proof-ray--2 { transform: rotate(0deg); }
.about-proof-ray--3 { transform: rotate(90deg); }
.about-proof-ray--4 { transform: rotate(180deg); }
.about-proof-ray--2::after { animation-delay: -.9s; }
.about-proof-ray--3::after { animation-delay: -1.8s; }
.about-proof-ray--4::after { animation-delay: -2.7s; }
.about-proof-statement,
.about-proof-note { position: relative; z-index: 2; }
.about-proof-statement { margin: 2px 8px 0; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; line-height: 1.72; text-align: center; }
.about-proof-note { display: block; margin: 10px 10px 0; color: rgba(255,255,255,.32); font-size: 8px; line-height: 1.55; text-align: center; }
.about-value-offer {
  margin-top: 38px;
  padding-top: 29px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.about-value-offer .about-story-heading h2 { font-size: 27px; line-height: 1.22; }
.about-value-list { display: grid; gap: 11px; margin-top: 24px; }
.about-value-list article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 17px;
  gap: 11px;
  min-width: 0;
  padding: 18px 14px 17px;
  overflow: hidden;
  border: 1px solid rgba(145,171,255,.15);
  border-radius: 20px;
  background:
    linear-gradient(125deg, rgba(107,61,220,.12), transparent 38%),
    linear-gradient(145deg, rgba(26,30,67,.82), rgba(8,12,30,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}
.about-value-list article::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b35cff, #3d91ff, #43dfcf);
  opacity: .78;
}
.about-value-list article > b {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132,176,255,.19);
  border-radius: 12px;
  color: #8cd8ff;
  background: rgba(62,102,217,.11);
  font-family: "DINCondensedBold", "Arial Black", sans-serif;
  font-size: 18px;
  line-height: 1;
}
.about-value-list h3 { margin: 1px 0 0; font-size: 17px; line-height: 1.34; }
.about-value-list p { margin: 8px 0 0; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.7; }
.about-value-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 11px; }
.about-value-tags i { padding: 5px 7px; border: 1px solid rgba(112,199,255,.13); border-radius: 999px; color: rgba(129,224,255,.75); background: rgba(51,155,214,.07); font-size: 8px; line-height: 1; font-style: normal; }
.about-value-arrow { color: rgba(109,208,255,.7); font-size: 15px; line-height: 1.5; }
.about-value-hook {
  margin: 14px 0 0;
  padding: 14px 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid rgba(102,215,201,.13);
  border-radius: 15px;
  color: rgba(230,247,246,.72);
  background: rgba(37,166,151,.055);
  font-size: 10px;
  line-height: 1.65;
}
.about-value-hook i { flex: 0 0 auto; width: 6px; height: 6px; margin-top: 5px; border-radius: 50%; background: #4ce4d2; box-shadow: 0 0 12px rgba(76,228,210,.7); }
@keyframes aboutProofFloat { from { transform: translateY(-3px) scale(.99); } to { transform: translateY(5px) scale(1.015); } }
@keyframes aboutProofCore { 0%, 100% { box-shadow: 0 0 0 8px rgba(79,90,255,.045), 0 0 34px rgba(65,107,255,.25), inset 0 1px 0 rgba(255,255,255,.15); } 50% { box-shadow: 0 0 0 12px rgba(79,90,255,.065), 0 0 52px rgba(74,116,255,.38), inset 0 1px 0 rgba(255,255,255,.18); } }
@keyframes aboutProofSignal { 0% { transform: translateX(0) scale(.5); opacity: 0; } 15% { opacity: 1; } 78% { opacity: 1; } 100% { transform: translateX(86px) scale(1); opacity: 0; } }
@keyframes aboutProofOrbit { to { transform: translate(-50%, -50%) rotate(341deg); } }
@keyframes aboutProofScan { 0%, 12% { transform: translateY(0); opacity: 0; } 28% { opacity: .8; } 55% { transform: translateY(430%); opacity: 0; } 100% { transform: translateY(430%); opacity: 0; } }
.about-opening { position: relative; padding: 10px 5px 0 18px; }
.about-opening::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a351ff, #3a8cff 54%, transparent);
}
.about-opening h2 { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.5; }
.about-opening > strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(27px, 7.5vw, 32px);
  line-height: 1.3;
  letter-spacing: -.035em;
}
.about-opening > p { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.85; }
.about-journey-list { position: relative; display: grid; gap: 48px; margin-top: 28px; }
.about-journey-item { display: grid; gap: 18px; }
.about-journey-item.is-offset .about-journey-media { margin-left: auto; }
.about-journey-media {
  position: relative;
  width: 92%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 54px rgba(0,0,0,.34);
}
.about-journey-media.is-portrait { width: 78%; aspect-ratio: 4 / 5; }
.about-journey-media.is-square { width: 88%; aspect-ratio: 1 / 1; }
.about-journey-media.is-wide { width: 100%; aspect-ratio: 4 / 3; }
.about-journey-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-journey-media.is-portrait img { object-position: 46% 18%; }
.about-journey-media.is-square img { object-position: 50% 50%; }
.about-journey-media.is-wide img { object-position: 50% 50%; }
.about-journey-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4,6,16,.7));
  pointer-events: none;
}
.about-journey-media figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
}
.about-journey-media figcaption i { width: 6px; height: 6px; border-radius: 50%; background: #4de6d3; box-shadow: 0 0 11px rgba(77,230,211,.8); }
.about-journey-copy { position: relative; padding: 0 5px; }
.about-journey-meta { display: flex; align-items: center; gap: 12px; }
.about-journey-meta > b {
  display: inline-block;
  font-family: "DINCondensedBold", "Arial Black", sans-serif;
  font-size: 58px;
  line-height: 1;
  background: linear-gradient(180deg, rgba(157,100,255,.96), rgba(53,137,255,.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-journey-meta > span { color: #91c8ff; font-size: 11px; font-weight: 950; letter-spacing: .16em; }
.about-journey-copy h3 { margin: 16px 0 0; font-size: 23px; line-height: 1.28; letter-spacing: -.025em; }
.about-journey-copy p { margin: 11px 0 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.82; }
.about-story-link {
  width: 100%;
  min-height: 48px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255,255,255,.17);
  background: transparent;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 850;
}
.about-story-link span { color: #6ccfff; font-size: 18px; }
.about-responsibility-list { margin-top: 23px; border-top: 1px solid rgba(255,255,255,.14); }
.about-responsibility-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 24px 3px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.about-responsibility-list article > b {
  font-family: "DINCondensedBold", "Arial Black", sans-serif;
  color: rgba(112,143,255,.52);
  font-size: 55px;
  line-height: 1;
}
.about-responsibility-list h3 { margin: 0; font-size: 22px; line-height: 1.2; }
.about-responsibility-list p { margin: 8px 0 0; color: rgba(255,255,255,.59); font-size: 13px; line-height: 1.75; }
.about-compass-panel {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(130,160,255,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(88,71,255,.28), transparent 34%),
    radial-gradient(circle at 84% 64%, rgba(36,171,255,.12), transparent 34%),
    linear-gradient(155deg, rgba(24,26,65,.82), rgba(7,10,25,.94));
  box-shadow: 0 28px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}
.about-compass-panel::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(78,183,255,.12);
  border-radius: 50%;
}
.about-compass-visual { position: relative; width: 252px; height: 252px; margin: 0 auto 20px; }
.about-compass-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(158,70,255,.22), rgba(47,139,255,.34), rgba(59,226,207,.18), rgba(158,70,255,.22));
  filter: blur(12px);
}
.about-compass-ring { position: absolute; border-radius: 50%; }
.about-compass-ring--outer { inset: 18px; border: 1px solid rgba(164,188,255,.32); box-shadow: inset 0 0 30px rgba(83,80,255,.08); }
.about-compass-ring--inner { inset: 64px; border: 1px dashed rgba(116,208,255,.28); }
.about-compass-visual > strong {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(175,195,255,.42);
  border-radius: 50%;
  background: rgba(9,14,40,.92);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  box-shadow: 0 0 36px rgba(83,94,255,.34);
  transform: translate(-50%, -50%);
}
.about-compass-node {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(9,13,35,.94);
  font-size: 17px;
  box-shadow: 0 0 22px rgba(82,111,255,.28);
}
.about-compass-node--1 { left: 12px; top: 112px; color: #83e5d9; }
.about-compass-node--2 { right: 12px; top: 112px; color: #83c7ff; }
.about-compass-node--3 { top: 2px; left: 103px; color: #c09bff; }
.about-compass-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.about-compass-list article { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 11px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.about-compass-list article > b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: rgba(92,114,255,.12); color: #a9c9ff; }
.about-compass-list article div { display: grid; gap: 3px; }
.about-compass-list strong { font-size: 13px; }
.about-compass-list span { color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.5; }
.about-compass-panel blockquote { margin: 18px 0 0; color: rgba(255,255,255,.9); font-size: 16px; font-weight: 850; line-height: 1.6; text-align: center; }
.about-current-list { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.about-current-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 11px;
  align-items: start;
  padding: 20px 2px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.about-current-list article > b { color: #81bfff; font-size: 10px; line-height: 1.8; letter-spacing: .14em; }
.about-current-list h3 { margin: 0; font-size: 19px; }
.about-current-list p { margin: 7px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }
.about-current-list article > span { color: rgba(114,206,255,.68); font-size: 17px; }
.about-current-note { margin: 16px 0 0; color: rgba(255,255,255,.35); font-size: 10px; line-height: 1.7; }
.about-story-closing {
  position: relative;
  overflow: hidden;
  margin: 72px 0 12px;
  padding: 30px 22px 22px;
  border: 1px solid rgba(144,132,255,.32);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 8%, rgba(52,170,255,.25), transparent 34%),
    linear-gradient(145deg, rgba(110,55,255,.34), rgba(22,37,92,.45) 54%, rgba(8,12,30,.92));
  box-shadow: 0 28px 66px rgba(0,0,0,.38);
}
.about-story-closing::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -32px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.about-story-closing h2 { position: relative; z-index: 1; margin: 13px 0 0; font-size: 25px; line-height: 1.34; letter-spacing: -.025em; }
.about-story-closing > p { position: relative; z-index: 1; margin: 14px 0 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.75; }
.about-story-actions { position: relative; z-index: 1; display: grid; gap: 9px; margin-top: 22px; }
.about-story-actions .btn { width: 100%; animation: none; }
[data-about-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
[data-about-reveal].is-visible { opacity: 1; transform: translateY(0); }
html[lang="en"] .about-story-hero__copy h1 { font-size: clamp(31px, 8.8vw, 38px); letter-spacing: -.035em; }
html[lang="en"] .about-story-heading h2 { font-size: 28px; }
html[lang="en"] .about-proof-heading h2 { font-size: 27px; line-height: 1.2; }
html[lang="en"] .about-value-offer .about-story-heading h2 { font-size: 24px; }
html[lang="en"] .about-proof-stat strong { font-size: 31px; }
html[lang="en"] .about-proof-stat span { font-size: 8.5px; }

@media (max-width: 374px) {
  .about-page-content { padding-right: 12px; padding-left: 12px; }
  .about-story-hero { height: 540px; min-height: 0; border-radius: 26px; }
  .about-story-hero__identity { top: 18px; left: 18px; }
  .about-story-hero__copy { right: 18px; bottom: 24px; left: 18px; }
  .about-story-hero__copy h1 { font-size: 32px; }
  .about-chapter-nav { min-height: 54px; }
  .about-chapter-nav button { font-size: 10px; }
  .about-story-section { margin-top: 56px; }
  .about-proof { margin-top: 28px; }
  .about-proof-heading h2 { font-size: 27px; }
  .about-proof-panel { padding-right: 7px; padding-left: 7px; border-radius: 26px; }
  .about-proof-stage { height: 338px; }
  .about-proof-stage::before { width: 222px; height: 222px; }
  .about-proof-stage::after { width: 270px; height: 170px; }
  .about-proof-core { top: calc(50% - 45px); left: calc(50% - 45px); width: 90px; height: 90px; padding: 0 10px; }
  .about-proof-core small { font-size: 7px; }
  .about-proof-core strong { font-size: 12px; }
  .about-proof-stat { width: 112px; height: 98px; padding: 11px 8px 10px; }
  .about-proof-stat strong { font-size: 32px; }
  .about-proof-stat span { font-size: 8.5px; }
  .about-proof-stat--1 { top: 8px; left: calc(50% - 56px); }
  .about-proof-stat--2 { top: 117px; right: -2px; }
  .about-proof-stat--3 { bottom: 7px; left: calc(50% - 56px); }
  .about-proof-stat--4 { top: 117px; left: -2px; }
  .about-proof-ray { width: 82px; }
  .about-value-offer .about-story-heading h2 { font-size: 25px; }
  .about-value-list article { grid-template-columns: 38px minmax(0, 1fr) 14px; gap: 9px; padding-right: 11px; padding-left: 11px; }
  .about-value-list article > b { width: 34px; height: 34px; }
  .about-value-list h3 { font-size: 16px; }
  .about-story-heading h2 { font-size: 28px; }
  .about-opening > strong { font-size: 26px; }
  .about-journey-list { gap: 42px; }
  .about-responsibility-list article { grid-template-columns: 62px minmax(0, 1fr); }
  .about-responsibility-list article > b { font-size: 50px; }
  .about-compass-panel { padding-right: 14px; padding-left: 14px; }
  .about-compass-visual { width: 232px; height: 232px; }
  .about-compass-node--1 { top: 102px; }
  .about-compass-node--2 { top: 102px; }
  .about-compass-node--3 { left: 93px; }
  html[lang="en"] .about-story-hero__copy h1 { font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-proof-panel::after,
  .about-proof-stage::after,
  .about-proof-core,
  .about-proof-stat,
  .about-proof-ray::after { animation: none !important; }
}

.cooperation-detail-content { padding-bottom: 118px; }
.detail-hero {
  padding: 22px 18px 20px;
  min-height: 238px;
  background:
    radial-gradient(circle at 86% 8%, rgba(24,215,255,.14), transparent 28%),
    radial-gradient(circle at 10% 8%, rgba(122,60,255,.22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.detail-hero__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: rgba(191,234,255,.78);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
}
.detail-hero__meta strong { color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .08em; }
.detail-hero__number {
  position: relative;
  z-index: 1;
  display: block;
  margin: 2px 0 -24px;
  padding-top: 18px;
  font-family: "DINCondensedBold", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 86px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .95;
  background: linear-gradient(180deg, #fff 0%, #eceef4 24%, #b3b7c2 50%, rgba(80,86,102,.78) 72%, rgba(28,32,44,.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}
.detail-hero p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.detail-cover {
  width: calc(100% + 36px);
  margin: 16px -18px 0;
  padding: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  overflow: hidden;
}
.detail-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.detail-section { margin-top: 26px; }
.detail-section__head { margin-bottom: 14px; }
.detail-section__head span { color: #9abaff; font-size: 11px; font-weight: 950; letter-spacing: .16em; }
.detail-section__head h2 { margin: 6px 0 0; font-size: 22px; line-height: 1.2; }
.detail-highlight-grid { display: grid; gap: 12px; }
.detail-highlight-card { padding: 16px; }
.detail-mini-no {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #d8c9ff;
  font-size: 11px;
  font-weight: 950;
  background: rgba(122,60,255,.18);
  border: 1px solid rgba(177,92,255,.2);
}
.detail-highlight-card h3 { position: relative; z-index: 1; margin: 10px 0 7px; font-size: 17px; }
.detail-highlight-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.detail-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
}
.detail-list,
.detail-check-list,
.detail-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-list { padding: 8px; display: grid; gap: 8px; }
.detail-list li {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.detail-list b,
.detail-flow b {
  color: #bda6ff;
  font-size: 11px;
  letter-spacing: .06em;
}
.detail-list span,
.detail-flow span { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5; }
.detail-check-list { padding: 14px; display: grid; gap: 11px; }
.detail-check-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.5;
}
.detail-check-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  background: var(--secondary);
}
.detail-flow { position: relative; display: grid; gap: 10px; }
.detail-flow::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(177,92,255,.85), transparent);
}
.detail-flow li {
  padding: 13px 14px 13px 46px;
  min-height: 50px;
}
.detail-flow b {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(122,60,255,.74);
  box-shadow: var(--shadow-a);
}
.detail-flow span { position: relative; z-index: 1; display: block; }
.detail-cta { margin-top: 28px; padding: 18px; text-align: center; }
.detail-cta h2 { position: relative; z-index: 1; margin: 0; font-size: 21px; line-height: 1.26; }
.detail-cta p { position: relative; z-index: 1; margin: 8px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.detail-cta__actions { position: relative; z-index: 1; display: grid; gap: 10px; }

.chat-view { padding-bottom: 0; }
.chat-shell { height: 100%; display: flex; flex-direction: column; padding: calc(18px + env(safe-area-inset-top)) 14px calc(92px + env(safe-area-inset-bottom)); }
.back.floating { position: absolute; z-index: 10; top: calc(18px + env(safe-area-inset-top)); left: 14px; width: 34px; padding: 0; }
.chat-head { padding: 14px 14px 14px 50px; display: flex; gap: 12px; align-items: center; }
.chat-head img { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; }
.chat-head img.tool-avatar { border-radius: 14px; object-fit: cover; }
.chat-head h1 { position: relative; z-index: 1; margin: 0; font-size: 17px; }
.chat-head p { position: relative; z-index: 1; margin: 6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4; }
.chat-head i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #4cffbd; box-shadow: 0 0 10px rgba(76,255,189,.8); }
.opening-card { margin-top: 12px; padding: 14px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.prompt-row { display: flex; gap: 7px; overflow-x: auto; margin: 10px 0; }
.prompt-row button { flex: 0 0 auto; max-width: 248px; min-height: 32px; padding: 0 11px; border-radius: 999px; color: rgba(255,255,255,.82); font-size: 11px; background: rgba(122,60,255,.18); border: 1px solid rgba(122,60,255,.28); }
.messages { flex: 1; overflow-y: auto; padding: 4px 2px 24px; }
.msg { max-width: 82%; margin: 10px 0; padding: 11px 13px; border-radius: 16px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); font-size: 13px; line-height: 1.55; white-space: pre-line; }
.msg.user { margin-left: auto; color: #fff; background: var(--primary); border-color: transparent; }
.msg.thinking { color: var(--weak); }
.msg.rich-response,
.msg.ai-error { width: min(94%, 430px); max-width: 94%; white-space: normal; }
.ai-response-body { white-space: pre-wrap; overflow-wrap: anywhere; }
.ai-response-actions { display: flex; gap: 12px; margin-top: 10px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }
.ai-response-actions button { padding: 0; color: rgba(205,215,255,.66); background: transparent; font-size: 10px; }
.ai-response-actions button:hover { color: #fff; }
.ai-suggestions,
.assessment-suggestions { display: grid; gap: 7px; margin-top: 10px; }
.ai-suggestions button,
.assessment-suggestions button {
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 12px;
  color: rgba(210,222,255,.92);
  text-align: left;
  line-height: 1.35;
  background: rgba(76,108,255,.11);
  border: 1px solid rgba(101,135,255,.22);
}
.ai-suggestions button:hover,
.assessment-suggestions button:hover { background: rgba(89,114,255,.2); border-color: rgba(121,151,255,.42); }
.ai-suggestions button:disabled { opacity: .48; cursor: default; }
.msg.ai-error { color: rgba(255,225,225,.88); border-color: rgba(255,116,129,.22); background: rgba(110,25,47,.16); }
.chat-input { height: 54px; padding: 7px; border-radius: 999px; display: flex; gap: 8px; background: rgba(10,14,35,.92); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 -10px 30px rgba(0,0,0,.28); }
.chat-input input { flex: 1; min-width: 0; padding: 0 14px; color: #fff; background: rgba(255,255,255,.06); border: 1px solid transparent; border-radius: 999px; }
.chat-input input:focus, .field-grid input:focus, .field-grid textarea:focus { border-color: rgba(122,60,255,.58); box-shadow: 0 0 18px rgba(122,60,255,.2); }
.chat-input button { width: 68px; border-radius: 999px; background: var(--primary); font-weight: 900; }

.login-content {
  position: relative;
  min-height: 100%;
  padding-top: 0;
}
.login-content > .back {
  position: absolute;
  z-index: 5;
  top: calc(18px + env(safe-area-inset-top));
  left: 18px;
}
.lock-stage {
  position: relative;
  height: min(62vh, 520px);
  min-height: 430px;
  margin: 0 -18px -72px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lock-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5,6,20,0) 0%, rgba(5,6,20,.78) 62%, var(--bg-0) 100%);
}
.lock-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .96;
}
.lock-ring { display: none; }
.login-card {
  position: relative;
  z-index: 2;
  padding: 18px;
}
.login-card h1 { position: relative; z-index: 1; margin: 8px 0 0; font-size: 24px; }
.login-card p { position: relative; z-index: 1; color: var(--muted); font-size: 13px; line-height: 1.6; }
.password-box { position: relative; z-index: 1; height: 50px; display: flex; align-items: center; gap: 8px; padding: 0 8px 0 14px; margin: 16px 0 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.password-box.error { border-color: rgba(255,80,120,.72); box-shadow: 0 0 18px rgba(255,80,120,.22); animation: shake .24s ease; }
.password-box.unlocked { border-color: rgba(24,215,255,.72); box-shadow: 0 0 28px rgba(24,215,255,.25); }
.password-box input { flex: 1; min-width: 0; color: #fff; background: transparent; border: 0; }
.password-box button { width: 54px; height: 34px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); }
.error-text { position: relative; z-index: 1; display: block; min-height: 22px; margin-top: 10px; color: #ff8cab; font-size: 12px; text-align: center; }

.backend-hero { position: relative; height: 360px; overflow: hidden; }
.backend-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.backend-hero-mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,20,0) 36%, rgba(5,6,20,.72) 76%, var(--bg-0) 100%); }
.backend-hero-nav {
  position: absolute;
  z-index: 3;
  top: calc(44px + env(safe-area-inset-top));
  left: 24px;
  padding: 0;
  color: rgba(255,255,255,.94);
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}
.backend-content { margin-top: -54px; padding-bottom: 116px; }
.page-head.compact { position: relative; z-index: 3; }
.backend-module {
  padding-top: calc(20px + env(safe-area-inset-top));
  padding-bottom: 116px;
}
.backend-dashboard { padding: 16px; }
.dashboard-profile { position: relative; z-index: 1; display: flex; gap: 13px; align-items: center; }
.dashboard-profile img { width: 66px; height: 66px; border-radius: 50%; }
.dashboard-profile h2 { margin: 0; font-size: 20px; }
.dashboard-profile p { margin: 4px 0; color: var(--muted); font-size: 12px; }
.dashboard-profile span { color: #9fffd8; font-size: 11px; }
.backend-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 15px; }
.backend-stat { padding: 11px 5px; border-radius: 14px; text-align: center; background: rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.07); }
.backend-stat b { display: block; font-size: 20px; background: var(--secondary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.backend-stat span { color: var(--muted); font-size: 10px; }
.agent-list { display: grid; gap: 16px; margin-top: 24px; }
.agent-card {
  padding: 22px 24px 24px;
  display: block;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(47,125,255,.1), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.agent-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}
.agent-avatar {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: block;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #060812;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 20px rgba(122,60,255,.22);
}
.agent-avatar.is-tool {
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(117,168,255,.16), 0 10px 26px rgba(43,50,174,.28);
}
.agent-info h3 { position: relative; z-index: 1; margin: 0; font-size: 22px; font-weight: 800; line-height: 1.15; }
.agent-info p { position: relative; z-index: 1; color: rgba(255,255,255,.52); margin: 7px 0 0; font-size: 13px; line-height: 1.45; }
.agent-assistant {
  position: relative;
  z-index: 1;
  height: 28px;
  margin: 14px 0 13px;
  padding: 0 13px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  font-size: 14px;
  font-weight: 800;
}
.agent-assistant i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.86);
  font-style: normal;
  font-size: 12px;
}
.agent-card .btn {
  position: relative;
  z-index: 1;
  height: 42px;
  min-height: 42px;
  font-size: 18px;
}
.future-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 42px; }
.future-card { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
.future-card img { width: 100%; height: 100%; object-fit: cover; opacity: .95; display: block; }
.future-card span { position: absolute; left: 4px; right: 4px; bottom: 8px; text-align: center; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 500; text-shadow: 0 2px 8px #000; }
.future-card.is-more {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.8);
  font-size: 26px;
  background: rgba(255,255,255,.08);
}
.coming-soon {
  margin-top: 42px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  letter-spacing: .02em;
}
.coming-soon span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.backend-links { margin-top: 18px; padding: 8px 16px; }
.backend-links button { position: relative; z-index: 1; width: 100%; min-height: 46px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--muted); background: transparent; text-align: left; }
.backend-links button:last-child { border-bottom: 0; }
.backend-links strong { display: block; color: #fff; font-size: 14px; }
.backend-links small { display: block; margin-top: 4px; color: var(--weak); font-size: 11px; line-height: 1.35; }

.resource-graph-manager-content {
  padding-bottom: 136px;
}

.resource-graph-manager-head {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.resource-graph-manager-head > div {
  min-width: 0;
}

.resource-graph-manager-head h1 {
  font-size: 27px;
}

.resource-graph-manager-head p {
  max-width: 242px;
}

.resource-graph-save-top {
  flex: 0 0 auto;
  min-width: 106px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  white-space: nowrap;
}

.resource-graph-manager-content [data-action="save-resource-graph"]:disabled {
  cursor: not-allowed;
  opacity: .42;
  filter: saturate(.38);
  box-shadow: none;
  animation: none;
}

.resource-graph-editor-status {
  min-height: 50px;
  margin-bottom: 14px;
  padding: 9px 11px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 50%, rgba(24,215,255,.08), transparent 34%),
    rgba(8,12,34,.74);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.resource-graph-editor-status > * {
  position: relative;
  z-index: 1;
}

.resource-graph-editor-status > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
}

.resource-graph-editor-status i {
  width: 8px;
  height: 8px;
  grid-row: 1 / span 2;
  border-radius: 50%;
  background: #69f4c2;
  box-shadow: 0 0 12px rgba(105,244,194,.72);
}

.resource-graph-editor-status strong {
  overflow: hidden;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-graph-editor-status span {
  overflow: hidden;
  color: var(--weak);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-graph-editor-status > button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: #b8d9ff;
  background: rgba(47,125,255,.1);
  border: 1px solid rgba(117,179,255,.2);
  font-size: 10px;
  font-weight: 850;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.resource-graph-editor-status > button:active {
  transform: scale(.96);
}

.resource-graph-editor-status[data-state="dirty"] {
  border-color: rgba(255,195,90,.27);
  background:
    radial-gradient(circle at 0% 50%, rgba(255,185,77,.11), transparent 34%),
    rgba(8,12,34,.76);
}

.resource-graph-editor-status[data-state="dirty"] i {
  background: #ffc35a;
  box-shadow: 0 0 13px rgba(255,195,90,.74);
}

.resource-graph-editor-status[data-state="saving"] {
  border-color: rgba(100,177,255,.28);
}

.resource-graph-editor-status[data-state="saving"] i {
  background: #64b1ff;
  box-shadow: 0 0 15px rgba(100,177,255,.78);
  animation: resourceGraphStatusPulse 1.1s ease-in-out infinite;
}

.resource-graph-editor-status[data-state="error"] {
  border-color: rgba(255,101,126,.32);
  background:
    radial-gradient(circle at 0% 50%, rgba(255,75,112,.12), transparent 36%),
    rgba(8,12,34,.78);
}

.resource-graph-editor-status[data-state="error"] i {
  background: #ff657e;
  box-shadow: 0 0 13px rgba(255,101,126,.68);
}

.resource-graph-editor-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

.resource-graph-editor-tab:nth-child(1) { --tab-color: #64c8ff; }
.resource-graph-editor-tab:nth-child(2) { --tab-color: #b58aff; }
.resource-graph-editor-tab:nth-child(3) { --tab-color: #79e7bd; }
.resource-graph-editor-tab:nth-child(4) { --tab-color: #f0cd7a; }
.resource-graph-editor-tab:nth-child(5) { --tab-color: #87a1ff; }
.resource-graph-editor-tab:nth-child(6) { --tab-color: #f08bb4; }

.resource-graph-editor-tab {
  position: relative;
  min-width: 0;
  min-height: 88px;
  padding: 12px 9px 10px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 18px;
  color: var(--muted);
  background:
    radial-gradient(circle at 80% 0%, rgba(47,125,255,.08), transparent 46%),
    rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  text-align: left;
  touch-action: manipulation;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.resource-graph-editor-tab::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tab-color, #7188ff), rgba(24,215,255,.12));
  opacity: .48;
  box-shadow: 0 0 12px color-mix(in srgb, var(--tab-color, #7188ff) 55%, transparent);
}

.resource-graph-editor-tab::after {
  content: none;
}

.resource-graph-editor-tab:active {
  transform: scale(.97);
}

.resource-graph-editor-tab > * {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.resource-graph-editor-tab > b {
  position: absolute;
  top: 11px;
  left: 10px;
  color: color-mix(in srgb, var(--tab-color, #8fa4ff) 72%, white);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .08em;
}

.resource-graph-editor-tab > span {
  padding-bottom: 5px;
  display: grid;
  gap: 4px;
}

.resource-graph-editor-tab > i {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061a1b;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  opacity: .56;
}

.resource-graph-editor-tab strong {
  width: 100%;
  overflow: hidden;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-graph-editor-tab span,
.resource-graph-editor-tab small,
.resource-graph-editor-tab em {
  width: 100%;
  overflow: hidden;
  color: var(--weak);
  font-size: 9px;
  font-style: normal;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-graph-editor-tab.is-active {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--tab-color, #5f7fff) 24%, transparent), transparent 49%),
    linear-gradient(145deg, rgba(108,64,255,.32), rgba(34,102,220,.18));
  border-color: color-mix(in srgb, var(--tab-color, #728cff) 62%, rgba(255,255,255,.18));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 10px 26px rgba(50,70,185,.2);
}

.resource-graph-editor-tab.is-active::after {
  content: none;
}

.resource-graph-editor-tab.is-active > i {
  color: #07171c;
  background: #69f4c2;
  border-color: rgba(105,244,194,.74);
  box-shadow: 0 0 14px rgba(105,244,194,.36);
  opacity: 1;
}

.resource-graph-editor-tab.is-active strong {
  color: #fff;
}

.resource-graph-editor-tab.is-active span,
.resource-graph-editor-tab.is-active small,
.resource-graph-editor-tab.is-active em {
  color: rgba(219,230,255,.66);
}

.resource-graph-editor-panel {
  padding: 16px;
  border-radius: 24px;
  overflow: visible;
  background:
    radial-gradient(circle at 10% 0%, rgba(122,60,255,.14), transparent 34%),
    linear-gradient(155deg, rgba(18,22,55,.92), rgba(7,11,31,.9));
  box-shadow: 0 22px 48px rgba(0,0,0,.28), 0 0 34px rgba(47,125,255,.07);
}

.resource-graph-editor-panel::before {
  border-radius: inherit;
  opacity: .18;
}

.resource-graph-editor-panel > * {
  position: relative;
  z-index: 1;
}

.resource-graph-editor-panel-head {
  min-height: 62px;
  margin-bottom: 13px;
  padding: 2px 2px 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.resource-graph-editor-panel-head > div {
  min-width: 0;
}

.resource-graph-editor-panel-head span {
  display: block;
  color: #83dfff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.resource-graph-editor-panel-head h2 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.22;
}

.resource-graph-editor-panel-head p {
  margin: 6px 0 0;
  color: var(--weak);
  font-size: 10px;
  line-height: 1.5;
}

.resource-graph-editor-panel-head > b,
.resource-graph-editor-panel-head > small,
.resource-graph-editor-panel-head > em {
  flex: 0 0 auto;
  min-height: 27px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #b9d8ff;
  background: rgba(47,125,255,.1);
  border: 1px solid rgba(117,179,255,.18);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.resource-graph-editor-panel-head > em {
  max-width: 172px;
  min-height: 0;
  padding: 7px 9px;
  justify-content: center;
  color: rgba(195,214,255,.6);
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.resource-graph-editor-section {
  margin-top: 12px;
  padding: 13px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.075);
}

.resource-graph-editor-section:first-of-type {
  margin-top: 0;
}

.resource-graph-editor-section > header,
.resource-graph-editor-section > .resource-graph-editor-row-head,
.resource-graph-editor-section-head {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.resource-graph-editor-section > header > div {
  min-width: 0;
}

.resource-graph-editor-section-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-graph-editor-section-head > div > span {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #9deaff;
  background: rgba(47,125,255,.1);
  border: 1px solid rgba(117,179,255,.15);
  font-size: 9px;
  font-weight: 900;
}

.resource-graph-editor-section-head > div > strong {
  color: rgba(255,255,255,.9);
  font-size: 13px;
}

.resource-graph-editor-section-head > small {
  color: var(--weak);
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.resource-graph-editor-section h3,
.resource-graph-editor-row-head h3,
.resource-graph-editor-row-head strong {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.35;
}

.resource-graph-editor-section header p,
.resource-graph-editor-section header small,
.resource-graph-editor-row-head span,
.resource-graph-editor-row-head small {
  margin: 3px 0 0;
  color: var(--weak);
  font-size: 9px;
  line-height: 1.4;
}

.resource-graph-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.resource-graph-field {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.resource-graph-field.is-wide,
.resource-graph-field--wide,
.resource-graph-field:has(textarea) {
  grid-column: 1 / -1;
}

.resource-graph-field > span,
.resource-graph-field > label {
  color: rgba(232,237,255,.7);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.resource-graph-field > span i {
  margin-left: 3px;
  color: rgba(255,255,255,.3);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
}

.resource-graph-field > small {
  color: var(--weak);
  font-size: 9px;
  line-height: 1.4;
}

.resource-graph-field input,
.resource-graph-field textarea,
.resource-graph-field select,
.resource-graph-editor-row input,
.resource-graph-editor-row textarea,
.resource-graph-editor-row select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 13px;
  outline: 0;
  color: rgba(255,255,255,.94);
  caret-color: #69f4c2;
  background: rgba(4,8,24,.68);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.resource-graph-field textarea,
.resource-graph-editor-row textarea {
  min-height: 92px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.55;
  resize: vertical;
}

.resource-graph-field select,
.resource-graph-editor-row select {
  appearance: none;
  color-scheme: dark;
  padding-right: 28px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.5) 50%),
    linear-gradient(135deg, rgba(255,255,255,.5) 50%, transparent 50%);
  background-position: calc(100% - 15px) 18px, calc(100% - 11px) 18px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

.resource-graph-field input::placeholder,
.resource-graph-field textarea::placeholder,
.resource-graph-editor-row input::placeholder,
.resource-graph-editor-row textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.resource-graph-field input:focus,
.resource-graph-field textarea:focus,
.resource-graph-field select:focus,
.resource-graph-editor-row input:focus,
.resource-graph-editor-row textarea:focus,
.resource-graph-editor-row select:focus {
  background-color: rgba(8,13,35,.88);
  border-color: rgba(105,244,194,.48);
  box-shadow: 0 0 0 3px rgba(105,244,194,.07), 0 0 20px rgba(47,125,255,.09);
}

.resource-graph-editor-list {
  display: grid;
  gap: 9px;
}

.resource-graph-editor-row {
  min-width: 0;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 8px;
  row-gap: 8px;
  border-radius: 15px;
  background: rgba(3,7,23,.48);
  border: 1px solid rgba(255,255,255,.075);
}

.resource-graph-editor-row-head {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-graph-editor-row-head::before {
  content: none;
}

.resource-graph-editor-row-head > b {
  width: 26px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #9deaff;
  background: rgba(47,125,255,.09);
  border: 1px solid rgba(117,179,255,.13);
  font-size: 8px;
  letter-spacing: .05em;
}

.resource-graph-editor-row-head > span {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 9px;
}

.resource-graph-editor-row-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(86px, 104px);
  gap: 7px;
}

.resource-graph-editor-row-fields > :only-child {
  grid-column: 1 / -1;
}

.resource-graph-editor-row-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 5px;
}

.resource-graph-mini-button {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: rgba(218,228,255,.72);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.085);
  font-size: 12px;
  font-weight: 900;
  touch-action: manipulation;
  transition: transform .16s ease, color .16s ease, border-color .16s ease, background .16s ease;
}

.resource-graph-mini-button:hover,
.resource-graph-mini-button:focus-visible {
  color: #fff;
  background: rgba(87,112,255,.15);
  border-color: rgba(117,179,255,.28);
}

.resource-graph-mini-button:active {
  transform: scale(.94);
}

.resource-graph-mini-button:disabled {
  cursor: default;
  opacity: .28;
}

.resource-graph-mini-button.is-danger {
  color: #ff9bae;
  background: rgba(255,75,112,.07);
  border-color: rgba(255,101,126,.14);
}

.resource-graph-mini-button.is-danger:hover,
.resource-graph-mini-button.is-danger:focus-visible {
  color: #ffd3da;
  background: rgba(255,75,112,.14);
  border-color: rgba(255,101,126,.34);
}

.resource-graph-add-button {
  width: 100%;
  min-height: 40px;
  margin-top: 9px;
  padding: 0 12px;
  border-radius: 13px;
  color: #9deaff;
  background: rgba(24,215,255,.045);
  border: 1px dashed rgba(91,218,255,.27);
  font-size: 11px;
  font-weight: 850;
  touch-action: manipulation;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.resource-graph-add-button:hover,
.resource-graph-add-button:focus-visible {
  color: #c9f5ff;
  background: rgba(24,215,255,.09);
  border-color: rgba(105,244,194,.45);
}

.resource-graph-add-button:disabled {
  cursor: default;
  opacity: .34;
}

.resource-graph-english-details {
  margin-top: 12px;
  border-radius: 17px;
  overflow: hidden;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.075);
}

.resource-graph-english-details summary {
  min-height: 46px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  color: rgba(224,230,255,.72);
  font-size: 11px;
  font-weight: 850;
  user-select: none;
}

.resource-graph-english-details summary::-webkit-details-marker {
  display: none;
}

.resource-graph-english-details summary::before {
  content: none;
}

.resource-graph-english-details summary::after {
  content: none;
}

.resource-graph-english-details summary > span {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
}

.resource-graph-english-details summary b {
  min-width: 28px;
  height: 20px;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #9deaff;
  background: rgba(24,215,255,.08);
  border: 1px solid rgba(91,218,255,.16);
  font-size: 8px;
  letter-spacing: .08em;
}

.resource-graph-english-details summary strong {
  color: rgba(235,240,255,.76);
  font-size: 11px;
  line-height: 1.25;
}

.resource-graph-english-details summary small {
  color: var(--weak);
  font-size: 8px;
  line-height: 1.25;
}

.resource-graph-english-details summary > i {
  margin-left: auto;
  color: rgba(255,255,255,.45);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition: transform .18s ease;
}

.resource-graph-english-details[open] {
  background: rgba(47,125,255,.04);
  border-color: rgba(117,179,255,.15);
}

.resource-graph-english-details[open] summary {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.resource-graph-english-details[open] summary > i {
  transform: rotate(45deg);
}

.resource-graph-english-details > :not(summary) {
  margin: 0;
  padding: 13px;
}

.resource-graph-english-details > .resource-graph-field-grid {
  padding: 13px;
}

.resource-graph-english-body {
  display: grid;
  gap: 13px;
}

.resource-graph-english-list {
  padding-top: 12px;
  display: grid;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.resource-graph-english-list > strong {
  color: rgba(235,240,255,.74);
  font-size: 10px;
}

.resource-graph-editor-empty {
  min-height: 190px;
  padding: 24px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--weak);
  text-align: center;
}

.resource-graph-editor-empty::before {
  content: "◇";
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #8fe7ff;
  background: rgba(47,125,255,.09);
  border: 1px solid rgba(117,179,255,.16);
  box-shadow: 0 0 22px rgba(47,125,255,.1);
  font-size: 21px;
}

.resource-graph-editor-empty strong {
  color: rgba(255,255,255,.8);
  font-size: 13px;
}

.resource-graph-editor-empty span,
.resource-graph-editor-empty p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.resource-graph-save-bottom {
  min-height: 50px;
  margin-top: 15px;
}

@keyframes resourceGraphStatusPulse {
  0%, 100% { opacity: .55; transform: scale(.78); }
  50% { opacity: 1; transform: scale(1.18); }
}

.gallery-manager-content { padding-bottom: 118px; }

.gallery-manager-head {
  margin-bottom: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.gallery-manager-head > div { min-width: 0; }
.gallery-manager-head h1 { font-size: 27px; }
.gallery-manager-head p { max-width: 230px; }

.gallery-upload-trigger {
  flex: 0 0 auto;
  min-width: 108px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  white-space: nowrap;
}

.gallery-admin-filters {
  position: sticky;
  z-index: 5;
  top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 0 0 15px;
  padding: 6px;
  border-radius: 20px;
  background: rgba(10,14,35,.86);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}

.gallery-admin-filters button {
  min-height: 42px;
  padding: 0 10px;
  border-radius: 15px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  touch-action: manipulation;
}

.gallery-admin-filters button span {
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
  font-size: 10px;
}

.gallery-admin-filters button.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(122,60,255,.58), rgba(47,125,255,.48));
  box-shadow: 0 8px 22px rgba(72,70,220,.22);
}

.gallery-admin-filters button.active span { background: rgba(255,255,255,.16); }
.gallery-manager-list { display: grid; gap: 12px; }

.gallery-admin-card {
  position: relative;
  min-height: 118px;
  padding: 12px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(47,125,255,.09), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
}

.gallery-admin-card > img,
.gallery-admin-card__thumb {
  width: 98px;
  height: 94px;
  border-radius: 15px;
  display: block;
  object-fit: cover;
  background: #0a0d1b;
  border: 1px solid rgba(255,255,255,.09);
}

.gallery-admin-card__thumb img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: inherit; }
.gallery-admin-card__body { min-width: 0; }
.gallery-admin-card h3 { margin: 0; font-size: 15px; line-height: 1.42; overflow-wrap: anywhere; }
.gallery-admin-card p { margin: 5px 0 0; color: var(--weak); font-size: 11px; line-height: 1.4; }

.gallery-admin-status {
  min-height: 24px;
  margin-top: 8px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #aaffd5;
  background: rgba(76,255,189,.08);
  border: 1px solid rgba(76,255,189,.16);
  font-size: 10px;
  font-weight: 850;
}

.gallery-admin-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4cffbd;
  box-shadow: 0 0 9px rgba(76,255,189,.7);
}

.gallery-admin-status.is-unpublished {
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.1);
}

.gallery-admin-status.is-unpublished::before { background: rgba(255,255,255,.36); box-shadow: none; }

.gallery-admin-actions {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gallery-admin-actions button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 850;
  touch-action: manipulation;
}

.gallery-admin-actions button:hover { border-color: rgba(153,124,255,.34); }
.gallery-admin-actions button:active { transform: scale(.97); }
.gallery-admin-actions .is-danger { color: #ffabc1; border-color: rgba(255,80,120,.18); background: rgba(255,80,120,.07); }

.gallery-admin-empty {
  padding: 34px 18px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.12);
}

.knowledge-hub-card {
  margin-top: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(24,215,255,.12), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(122,60,255,.14), transparent 38%),
    linear-gradient(145deg, rgba(18,22,52,.96), rgba(8,11,30,.92));
  border-color: rgba(109,155,255,.22);
}
.knowledge-hub-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.knowledge-hub-head > div { min-width: 0; }
.knowledge-hub-head span { color: #75ddff; font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.knowledge-hub-head h2 { margin: 5px 0 4px; font-size: 23px; }
.knowledge-hub-head p { max-width: 265px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.knowledge-quick-upload {
  flex: 0 0 auto;
  min-width: 76px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #713dff, #2f7dff);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(59,91,255,.28);
}
.knowledge-hub-stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 15px; }
.knowledge-hub-stats > div { min-width: 0; padding: 11px 7px; border-radius: 15px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.07); }
.knowledge-hub-stats b { display: block; overflow: hidden; color: #fff; font-size: 18px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-hub-stats span { display: block; margin-top: 4px; color: var(--weak); font-size: 9px; }
.knowledge-hub-recent-head { position: relative; z-index: 1; margin: 16px 1px 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.knowledge-hub-recent-head strong { font-size: 13px; }
.knowledge-hub-recent-head span { color: #8fffd2; font-size: 9px; }
.knowledge-hub-recent { position: relative; z-index: 1; display: grid; gap: 6px; }
.knowledge-hub-file {
  width: 100%;
  min-height: 52px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  text-align: left;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.065);
}
.knowledge-hub-file > span:nth-child(2) { min-width: 0; }
.knowledge-hub-file strong { display: block; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-hub-file small { display: block; margin-top: 3px; overflow: hidden; color: var(--weak); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-hub-file i { color: #9dffd9; font-size: 9px; font-style: normal; }
.knowledge-hub-empty { padding: 15px 10px; border-radius: 14px; color: var(--weak); font-size: 11px; line-height: 1.55; text-align: center; background: rgba(255,255,255,.035); border: 1px dashed rgba(255,255,255,.09); }
.knowledge-hub-open { position: relative; z-index: 1; width: 100%; min-height: 43px; margin-top: 10px; padding: 0 3px; display: flex; align-items: center; justify-content: space-between; color: #bfeaff; background: transparent; border-top: 1px solid rgba(255,255,255,.07); font-size: 12px; font-weight: 900; text-align: left; }
.knowledge-hub-open span { font-size: 18px; }

.knowledge-content { padding-bottom: 118px; }
.knowledge-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.knowledge-head > div { min-width: 0; }
.knowledge-head h1 { font-size: 28px; }
.knowledge-head p { max-width: 270px; }
.knowledge-upload-trigger { flex: 0 0 auto; min-width: 108px; min-height: 44px; padding: 0 13px; font-size: 12px; white-space: nowrap; }
.knowledge-model-map {
  margin-top: 15px;
  padding: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(122,60,255,.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(24,215,255,.09), transparent 38%),
    linear-gradient(145deg, rgba(18,22,52,.94), rgba(8,11,30,.92));
  border-color: rgba(112,146,255,.18);
}
.knowledge-model-head { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.knowledge-model-head > div { min-width: 0; }
.knowledge-model-head span { display: block; color: #75ddff; font-size: 7px; font-weight: 950; letter-spacing: .16em; }
.knowledge-model-head h2 { margin: 5px 0 0; font-size: 18px; }
.knowledge-model-head > small { flex: 0 0 auto; color: var(--weak); font-size: 8px; }
.knowledge-library-map { position: relative; z-index: 1; margin-top: 12px; display: grid; gap: 8px; }
.knowledge-library-group { padding: 9px; border-radius: 16px; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.065); }
.knowledge-library-group > header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.knowledge-library-group > header > div { min-width: 0; display: flex; align-items: baseline; gap: 7px; }
.knowledge-library-group > header strong { font-size: 12px; }
.knowledge-library-group > header small { overflow: hidden; color: var(--weak); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-library-group > header > span { flex: 0 0 auto; color: #8fffd2; font-size: 8px; }
.knowledge-library-group > div { margin-top: 7px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.knowledge-library-group button {
  min-width: 0;
  min-height: 51px;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  color: #fff;
  text-align: left;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
}
.knowledge-library-group button > b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 9px; color: #95e7ff; background: rgba(47,125,255,.12); font-size: 8px; }
.knowledge-library-group button > span { min-width: 0; }
.knowledge-library-group button strong { display: block; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-library-group button small { display: block; margin-top: 3px; overflow: hidden; color: var(--weak); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-library-group button.active { background: linear-gradient(135deg, rgba(122,60,255,.36), rgba(47,125,255,.25)); border-color: rgba(117,179,255,.32); box-shadow: inset 0 0 18px rgba(88,100,255,.1); }
.knowledge-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; margin: 16px 0 13px; }
.knowledge-stats > div { min-width: 0; padding: 11px 5px; text-align: center; }
.knowledge-stats b { position: relative; z-index: 1; display: block; overflow: hidden; font-size: 18px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; background: var(--secondary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.knowledge-stats span { position: relative; z-index: 1; display: block; margin-top: 5px; color: var(--weak); font-size: 9px; }
.knowledge-toolbar {
  position: sticky;
  z-index: 6;
  top: 8px;
  margin-bottom: 10px;
  padding: 9px;
  background: rgba(9,12,31,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.knowledge-search { position: relative; z-index: 1; height: 43px; padding: 0 12px; display: flex; align-items: center; gap: 9px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); }
.knowledge-search > span { color: #8ddfff; font-size: 21px; line-height: 1; }
.knowledge-search input { flex: 1; min-width: 0; height: 100%; color: #fff; border: 0; background: transparent; font-size: 12px; }
.knowledge-search input::placeholder { color: rgba(255,255,255,.34); }
.knowledge-category-filters { position: relative; z-index: 1; margin-top: 8px; padding-bottom: 1px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.knowledge-category-filters::-webkit-scrollbar { display: none; }
.knowledge-category-filters button,
.knowledge-status-filters button { flex: 0 0 auto; min-height: 34px; padding: 0 10px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); font-size: 10px; font-weight: 850; }
.knowledge-category-filters button span,
.knowledge-status-filters button span { margin-left: 3px; color: var(--weak); }
.knowledge-category-filters button.active,
.knowledge-status-filters button.active { color: #fff; background: linear-gradient(135deg, rgba(122,60,255,.56), rgba(47,125,255,.44)); border-color: rgba(121,151,255,.3); }
.knowledge-category-filters button.active span,
.knowledge-status-filters button.active span { color: rgba(255,255,255,.8); }
.knowledge-status-filters { display: flex; gap: 7px; margin-bottom: 12px; overflow-x: auto; scrollbar-width: none; }
.knowledge-status-filters::-webkit-scrollbar { display: none; }
.knowledge-file-list { display: grid; gap: 9px; }
.knowledge-file-row {
  min-height: 86px;
  padding: 12px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
}
.knowledge-file-type { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #bfeaff; background: linear-gradient(145deg, rgba(47,125,255,.2), rgba(122,60,255,.13)); border: 1px solid rgba(101,175,255,.18); font-size: 9px; font-weight: 950; letter-spacing: .03em; }
.knowledge-hub-file .knowledge-file-type { width: 38px; height: 38px; border-radius: 11px; font-size: 8px; }
.knowledge-file-copy { position: relative; z-index: 1; min-width: 0; }
.knowledge-file-copy h3 { margin: 0; overflow: hidden; font-size: 14px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-file-copy p { margin: 5px 0 0; overflow: hidden; color: var(--weak); font-size: 9px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-file-tags { margin-top: 6px; display: flex; gap: 4px; overflow: hidden; }
.knowledge-file-tags span { flex: 0 0 auto; padding: 3px 6px; border-radius: 999px; color: rgba(255,255,255,.58); background: rgba(255,255,255,.05); font-size: 8px; }
.knowledge-file-side { position: relative; z-index: 1; min-width: 48px; display: grid; justify-items: end; gap: 9px; }
.knowledge-file-side > button { width: 38px; height: 30px; border-radius: 10px; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); font-weight: 900; letter-spacing: .08em; }
.knowledge-file-status { min-height: 21px; padding: 0 7px; border-radius: 999px; display: inline-flex; align-items: center; color: #9fffd8; background: rgba(76,255,189,.075); border: 1px solid rgba(76,255,189,.14); font-size: 8px; white-space: nowrap; }
.knowledge-file-status.is-inactive { color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.knowledge-file-status.is-trashed { color: #ffabc1; background: rgba(255,80,120,.07); border-color: rgba(255,80,120,.14); }
.knowledge-empty { padding: 34px 18px; text-align: center; }
.knowledge-empty strong { position: relative; z-index: 1; display: block; font-size: 16px; }
.knowledge-empty p { position: relative; z-index: 1; margin: 7px auto 0; max-width: 260px; color: var(--weak); font-size: 11px; line-height: 1.6; }

.knowledge-upload-sheet,
.knowledge-edit-sheet { max-height: 92vh; overflow-y: auto; overscroll-behavior: contain; }
.knowledge-upload-form,
.knowledge-edit-form { position: relative; z-index: 1; padding: 2px 2px 4px; }
.knowledge-upload-form h2,
.knowledge-edit-form h2 { margin: 7px 40px 6px 0; font-size: 22px; }
.knowledge-upload-form > p { margin: 0 38px 14px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.knowledge-upload-modes { margin-bottom: 10px; padding: 4px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.065); }
.knowledge-upload-modes button { min-width: 0; min-height: 53px; padding: 8px; display: grid; align-content: center; gap: 3px; border-radius: 12px; color: var(--muted); background: transparent; text-align: left; }
.knowledge-upload-modes button strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-upload-modes button small { color: var(--weak); font-size: 8px; }
.knowledge-upload-modes button.active { color: #fff; background: linear-gradient(135deg, rgba(122,60,255,.68), rgba(47,125,255,.52)); box-shadow: 0 8px 20px rgba(48,60,210,.18); }
.knowledge-upload-modes button.active small { color: rgba(255,255,255,.7); }
.knowledge-upload-pane { display: block; }
.knowledge-upload-dropzone {
  min-height: 126px;
  padding: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(145deg, rgba(122,60,255,.1), rgba(47,125,255,.05));
  border: 1px dashed rgba(137,172,255,.35);
}
.knowledge-upload-dropzone input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.knowledge-upload-dropzone > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--primary); font-size: 22px; box-shadow: 0 8px 24px rgba(69,80,255,.28); }
.knowledge-upload-dropzone strong { margin-top: 8px; font-size: 14px; }
.knowledge-upload-dropzone small { margin-top: 5px; color: var(--weak); font-size: 9px; line-height: 1.45; }
.knowledge-six-selection-head { min-height: 34px; padding: 0 3px 7px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.knowledge-six-selection-head span { color: var(--muted); font-size: 9px; }
.knowledge-six-selection-head strong { flex: 0 0 auto; min-height: 24px; padding: 0 8px; display: inline-flex; align-items: center; border-radius: 999px; color: #9deaff; background: rgba(47,125,255,.1); border: 1px solid rgba(117,179,255,.16); font-size: 8px; }
.knowledge-six-upload-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.knowledge-six-upload-slot { position: relative; min-width: 0; min-height: 92px; padding: 10px; display: grid; grid-template-columns: 27px minmax(0, 1fr); column-gap: 8px; align-content: center; border-radius: 15px; cursor: pointer; color: #fff; text-align: left; touch-action: manipulation; background: linear-gradient(145deg, rgba(122,60,255,.09), rgba(47,125,255,.045)); border: 1px dashed rgba(137,172,255,.22); transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease; }
.knowledge-library-file-input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.knowledge-six-upload-slot > i { position: absolute; top: 8px; right: 8px; min-height: 21px; padding: 0 7px; display: none; align-items: center; border-radius: 999px; color: #071b19; background: #69f4c2; font-size: 7px; font-style: normal; font-weight: 950; box-shadow: 0 5px 14px rgba(105,244,194,.2); }
.knowledge-six-upload-slot > b { grid-row: 1 / span 3; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; color: #9deaff; background: rgba(47,125,255,.14); font-size: 8px; }
.knowledge-six-upload-slot > strong { min-width: 0; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-six-upload-slot > small { margin-top: 2px; color: var(--weak); font-size: 7px; }
.knowledge-six-upload-slot > em { min-width: 0; margin-top: 6px; overflow: hidden; color: #8fffd2; font-size: 8px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-six-upload-slot:active { transform: scale(.985); }
.knowledge-six-upload-slot:focus-visible { outline: 2px solid rgba(117,179,255,.62); outline-offset: 2px; }
.knowledge-six-upload-slot.is-selected { background: linear-gradient(145deg, rgba(46,216,179,.16), rgba(47,125,255,.12)); border: 1px solid rgba(105,244,194,.68); box-shadow: inset 0 0 0 1px rgba(105,244,194,.1), 0 8px 24px rgba(30,157,142,.13); }
.knowledge-six-upload-slot.is-selected > i,
.knowledge-six-upload-slot.has-error > i { display: inline-flex; }
.knowledge-six-upload-slot.is-selected > b { color: #071b19; background: #69f4c2; }
.knowledge-six-upload-slot.is-selected > em { color: #9fffd8; font-weight: 850; }
.knowledge-six-upload-slot.is-uploading { border-color: rgba(117,179,255,.72); box-shadow: inset 0 0 0 1px rgba(117,179,255,.12), 0 8px 24px rgba(47,125,255,.14); }
.knowledge-six-upload-slot.is-uploading > i { color: #fff; background: linear-gradient(135deg, #713dff, #2f7dff); }
.knowledge-six-upload-slot.is-done { border-color: rgba(105,244,194,.82); }
.knowledge-six-upload-slot.has-error { border: 1px solid rgba(255,101,137,.58); background: rgba(255,80,120,.07); }
.knowledge-six-upload-slot.has-error > i { color: #fff; background: #d94b70; }
.knowledge-six-upload-slot.has-error > em { color: #ffabc1; }
.knowledge-upload-queue { margin-top: 10px; display: grid; gap: 6px; }
.knowledge-upload-queue:empty { display: none; }
.knowledge-upload-item { min-height: 48px; padding: 7px 9px; display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 8px; align-items: center; border-radius: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); }
.knowledge-upload-item > span { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #bfeaff; background: rgba(47,125,255,.12); font-size: 7px; font-weight: 950; }
.knowledge-upload-item div { min-width: 0; }
.knowledge-upload-item strong { display: block; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-upload-item small { display: block; margin-top: 3px; color: var(--weak); font-size: 8px; }
.knowledge-upload-item.has-error { border-color: rgba(255,80,120,.2); }
.knowledge-upload-item.has-error small { color: #ff9eb6; }
.knowledge-upload-item.is-done { border-color: rgba(76,255,189,.18); }
.knowledge-upload-item.is-done small { color: #9fffd8; }
.knowledge-upload-fields,
.knowledge-edit-form { display: grid; gap: 10px; }
.knowledge-upload-fields { margin-top: 12px; }
.knowledge-upload-fields label,
.knowledge-edit-form > label { display: grid; gap: 6px; }
.knowledge-upload-fields label > span,
.knowledge-edit-form > label > span { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 850; }
.knowledge-upload-fields em { margin-left: 3px; color: var(--weak); font-size: 9px; font-style: normal; font-weight: 500; }
.knowledge-upload-fields input,
.knowledge-upload-fields select,
.knowledge-edit-form input,
.knowledge-edit-form select { width: 100%; min-height: 43px; padding: 0 12px; border-radius: 13px; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.knowledge-upload-fields select,
.knowledge-edit-form select { color-scheme: dark; }
.knowledge-upload-status { min-height: 18px; margin: 4px 2px 0 !important; color: #9fffd8 !important; }
.knowledge-upload-save { min-height: 47px; }
.knowledge-upload-save:disabled { opacity: .45; cursor: default; filter: saturate(.55); }
.knowledge-edit-meta { min-height: 64px; padding: 9px; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 10px; align-items: center; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.knowledge-edit-meta .knowledge-file-type { width: 46px; height: 46px; border-radius: 13px; }
.knowledge-edit-meta > div { min-width: 0; }
.knowledge-edit-meta strong { display: block; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.knowledge-edit-meta small { display: block; margin-top: 4px; color: var(--weak); font-size: 9px; }
.knowledge-edit-primary-actions,
.knowledge-lifecycle-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.knowledge-edit-primary-actions { margin-top: 3px; }
.knowledge-lifecycle-actions { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.07); }
.btn.danger { color: #ffabc1; background: rgba(255,80,120,.08); border: 1px solid rgba(255,80,120,.18); }

.business-content { padding-bottom: 118px; }
.business-head em {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #bfeaff;
  font-size: 11px;
  font-style: normal;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.14);
}
.radar-add { margin: -8px 0 16px; }
.radar-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.radar-stat {
  min-height: 76px;
  padding: 12px 5px;
  border-radius: 18px;
  text-align: center;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.2);
  box-shadow: 0 0 20px rgba(80,180,255,.12);
  backdrop-filter: blur(14px);
}
.radar-stat b { display: block; color: #eaf7ff; font-size: 25px; text-shadow: 0 0 18px rgba(80,180,255,.45); }
.radar-stat span { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.25; }
.high-intent { padding: 16px; margin-bottom: 16px; }
.high-intent__title { position: relative; z-index: 1; margin-bottom: 12px; }
.high-intent__title span { color: #9abaff; font-size: 10px; font-weight: 950; letter-spacing: .16em; }
.high-intent__title h2 { margin: 5px 0 0; font-size: 20px; }
.high-intent__list { position: relative; z-index: 1; display: grid; gap: 10px; }
.intent-alert {
  padding: 12px;
  border-radius: 16px;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.12);
}
.intent-alert b,
.intent-alert span,
.intent-alert em,
.intent-alert small { display: block; }
.intent-alert b { font-size: 13px; color: #fff; }
.intent-alert span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.intent-alert em { margin-top: 4px; color: #bfeaff; font-size: 12px; font-style: normal; }
.intent-alert small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 11px; }
.opportunity-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.opportunity-filters::-webkit-scrollbar { display: none; }
.opportunity-filters button {
  flex: 0 0 auto;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 900;
}
.opportunity-filters button.active { color: #fff; background: rgba(122,60,255,.32); border-color: rgba(122,60,255,.52); box-shadow: var(--shadow-a); }
.opportunity-list { display: grid; gap: 14px; }
.opportunity-card { padding: 15px; }
.opportunity-top { position: relative; z-index: 1; display: grid; grid-template-columns: 44px 1fr 66px; gap: 10px; align-items: center; }
.opportunity-avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  background: var(--secondary);
  box-shadow: var(--shadow-a);
}
.opportunity-name h3 { margin: 0; font-size: 17px; }
.opportunity-name p { margin: 4px 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.opportunity-name span { color: #bda6ff; font-size: 11px; font-weight: 900; }
.intent-score {
  padding: 8px 4px;
  border-radius: 16px;
  text-align: center;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 18px rgba(80,180,255,.14);
}
.intent-score b { display: block; color: #eaf7ff; font-size: 22px; line-height: 1; }
.intent-score span { color: rgba(255,255,255,.66); font-size: 10px; }
.intent-score.large { display: inline-block; min-width: 86px; margin-right: 10px; vertical-align: top; }
.intent-score.large b { font-size: 34px; }
.opportunity-meta { position: relative; z-index: 1; display: grid; gap: 6px; margin: 13px 0; }
.opportunity-meta span { color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.45; }
.ai-suggestion {
  position: relative;
  z-index: 1;
  padding: 11px;
  border-radius: 16px;
  background: rgba(122,60,255,.12);
  border: 1px solid rgba(122,60,255,.18);
}
.ai-suggestion b { display: block; color: #d9c9ff; font-size: 11px; margin-bottom: 5px; }
.ai-suggestion p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.opportunity-foot { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 12px; }
.status-badge {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #bfeaff;
  font-size: 11px;
  font-weight: 900;
  background: rgba(24,215,255,.1);
  border: 1px solid rgba(24,215,255,.18);
}
.opportunity-foot button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 900;
}
.empty-text { color: var(--muted); font-size: 13px; line-height: 1.6; }

.bottom-nav {
  position: absolute;
  z-index: 50;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  height: 64px;
  padding: 8px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.14fr 1fr;
  gap: 8px;
  background: rgba(10,14,35,.74);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 -12px 36px rgba(0,0,0,.32);
  transform: translateY(0);
  transition: opacity .24s ease, transform .24s ease;
}

.phone.is-about-reading .bottom-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

.bottom-nav button { border-radius: 18px; color: var(--muted); font-size: 12px; font-weight: 900; background: transparent; }
.bottom-nav button.active { color: #fff; background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.bottom-nav button.active::before { content: ""; display: block; width: 6px; height: 6px; margin: 0 auto 3px; border-radius: 50%; background: #18d7ff; box-shadow: 0 0 12px rgba(24,215,255,.9); }
.bottom-nav .nav-core { color: #fff; background: var(--primary); box-shadow: var(--shadow-a); }
.bottom-nav .nav-core i { display: block; font-style: normal; font-size: 10px; }

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 22px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(12px);
}

.modal-card {
  width: min(390px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 18px;
  background: rgba(10,14,35,.94);
}

.modal:not(.hidden) .modal-card,
.modal:not(.hidden) .image-preview-card {
  animation: modalUp .22s ease both;
}

.bottom-sheet {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sheet-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
}

.sheet-panel {
  position: relative;
  width: min(430px, 100%);
  max-height: 85vh;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  background: rgba(10,14,35,.96);
  animation: sheetUp .24s ease both;
}

.sheet-scroll {
  position: relative;
  z-index: 1;
  max-height: calc(85vh - 36px);
  overflow-y: auto;
  padding-right: 2px;
}

.sheet-head { padding-right: 38px; }
.sheet-head span { color: #9abaff; font-size: 10px; font-weight: 950; letter-spacing: .16em; }
.sheet-head h2 { margin: 7px 0 4px; font-size: 23px; }
.sheet-head p { margin: 0; color: var(--muted); font-size: 13px; }
.sheet-section { margin-top: 18px; }
.sheet-section h3 { margin: 0 0 10px; font-size: 16px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.info-grid span {
  min-height: 58px;
  padding: 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.45;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.info-grid b { display: block; margin-bottom: 4px; color: var(--weak); font-size: 10px; }
.judgement-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(240,248,255,.08);
  border: 1px solid rgba(130,210,255,.22);
  box-shadow: 0 0 22px rgba(80,180,255,.12);
}
.judgement-card p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.judgement-card small { color: #bfeaff; font-size: 12px; }
.behavior-timeline { position: relative; margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.behavior-timeline::before { content: ""; position: absolute; left: 31px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(180deg, rgba(24,215,255,.65), transparent); }
.behavior-timeline li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 10px; align-items: start; }
.behavior-timeline time { position: relative; z-index: 1; padding: 5px 0; border-radius: 999px; color: #bfeaff; font-size: 11px; text-align: center; background: rgba(24,215,255,.1); border: 1px solid rgba(24,215,255,.14); }
.behavior-timeline span { color: var(--muted); font-size: 12px; line-height: 1.55; }
.suggested-actions { margin: 0; padding: 12px 12px 12px 30px; border-radius: 18px; color: var(--muted); font-size: 13px; line-height: 1.65; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.script-box { padding: 13px; border-radius: 18px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.65; background: rgba(122,60,255,.13); border: 1px solid rgba(122,60,255,.22); }
.sheet-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.sheet-actions { position: sticky; z-index: 2; bottom: -18px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px -4px 0; padding: 12px 4px 4px; background: linear-gradient(180deg, transparent, rgba(10,14,35,.98) 24%); }
.sheet-actions .btn { min-height: 42px; }

.gallery-upload-sheet {
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.gallery-upload-form {
  position: relative;
  z-index: 1;
  padding: 2px 2px 4px;
}

.gallery-upload-form h2 { margin: 8px 40px 7px 0; font-size: 23px; }
.gallery-upload-form > p { margin: 0 40px 16px 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.gallery-upload-dropzone {
  position: relative;
  min-height: 148px;
  padding: 22px 16px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 0%, rgba(122,60,255,.2), transparent 48%),
    rgba(255,255,255,.04);
  border: 1px dashed rgba(177,146,255,.38);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .18s ease, background .18s ease;
}

.gallery-upload-dropzone:hover { border-color: rgba(177,146,255,.65); background-color: rgba(255,255,255,.06); }
.gallery-upload-dropzone:active { background-color: rgba(122,60,255,.09); }

.gallery-upload-dropzone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.gallery-upload-dropzone > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(122,60,255,.86), rgba(47,125,255,.82));
  box-shadow: 0 0 25px rgba(122,60,255,.3);
  font-size: 26px;
  font-weight: 300;
}

.gallery-upload-dropzone strong { margin-top: 3px; font-size: 14px; }
.gallery-upload-dropzone small { color: var(--weak); font-size: 10px; }

.gallery-upload-preview {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.gallery-upload-preview:empty { display: none; }
.gallery-upload-preview img { width: 100%; max-height: 260px; display: block; object-fit: contain; background: #070916; }
.gallery-upload-preview .gallery-upload-preview__meta { padding: 9px 11px; color: var(--weak); font-size: 10px; line-height: 1.4; }

.gallery-upload-fields {
  margin: 14px 0;
  display: grid;
  gap: 11px;
}

.gallery-upload-fields label { display: grid; gap: 7px; }
.gallery-upload-fields label > span { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 800; }
.gallery-upload-fields label em { margin-left: 4px; color: var(--weak); font-size: 10px; font-style: normal; font-weight: 500; }

.gallery-upload-fields input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border-radius: 15px;
  color: #fff;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.gallery-upload-fields input::placeholder { color: rgba(255,255,255,.3); }
.gallery-upload-fields input:focus { border-color: rgba(153,124,255,.55); box-shadow: 0 0 0 3px rgba(122,60,255,.1); }
.gallery-upload-save { min-height: 48px; margin-top: 2px; }

.modal-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-size: 24px;
}

.assessment-step { position: relative; z-index: 1; }
.assessment-step h2 { margin: 0 40px 8px 0; font-size: 22px; }
.assessment-step p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.assessment-privacy { margin: 10px 0 0; padding: 9px 11px; border-radius: 12px; color: rgba(178,193,225,.66) !important; background: rgba(255,255,255,.035); font-size: 10px !important; }
.assessment-loading { min-height: 260px; display: grid; align-content: center; justify-items: center; text-align: center; }
.assessment-loader { width: 50px; height: 50px; margin-bottom: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.1); border-top-color: #7b6cff; box-shadow: 0 0 26px rgba(90,99,255,.28); animation: assessmentSpin 1s linear infinite; }
.assessment-error { padding: 18px 0 4px; }
.field-grid { display: grid; gap: 11px; margin: 16px 0; }
.field-grid input, .field-grid textarea, .field-grid select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.field-grid select { appearance: none; }
.field-grid textarea { min-height: 96px; resize: vertical; }
.manual-form { position: relative; z-index: 1; }
.manual-form h2 { margin: 8px 40px 12px 0; font-size: 22px; }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.option-grid button { min-height: 34px; padding: 0 12px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.option-grid button.selected { color: #fff; background: rgba(122,60,255,.32); border-color: rgba(122,60,255,.54); }
.step-actions { display: flex; gap: 10px; }
.step-actions .btn { flex: 1; }
.score-ring { width: 150px; height: 150px; margin: 14px auto; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(177,92,255,.52); box-shadow: inset var(--shadow-a), var(--shadow-a); }
.score-ring b { font-size: 44px; }
.result-lines { display: grid; gap: 10px; margin: 16px 0; }
.result-lines div { padding: 12px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 13px; line-height: 1.55; }
.result-lines strong { color: #fff; }

.contact-modal h2,
.info-modal h2 {
  position: relative;
  z-index: 1;
  margin: 0 40px 14px 0;
  font-size: 22px;
}

.contact-modal p,
.info-modal p,
.info-list {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.qr-frame {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
  margin: 10px auto 14px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(122,60,255,.34);
  box-shadow: var(--shadow-a);
}

.qr-frame img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; }
.phone-value { position: relative; z-index: 1; margin: 14px 0 18px; padding: 16px; border-radius: 18px; text-align: center; color: #fff; font-size: 18px; font-weight: 900; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.info-list { margin: 0 0 18px; padding-left: 18px; }
.info-list li { margin: 8px 0; }

.image-preview-card { position: relative; width: min(390px, 100%); }
.image-preview-card img { width: 100%; max-height: 76vh; display: block; border-radius: 22px; object-fit: contain; background: #050610; }
.preview-title {
  margin-top: 10px;
  padding: 0 8px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.preview-title:empty { display: none; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 110px; transform: translateX(-50%); padding: 10px 14px; border-radius: 999px; color: #fff; background: rgba(10,14,35,.92); border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-a); font-size: 13px; }

.fade-up { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes breathe { 0%,100% { box-shadow: 0 0 18px rgba(122,60,255,.34); } 50% { box-shadow: 0 0 34px rgba(47,125,255,.38); } }
@keyframes slowRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes floatParticle { 0%,100% { transform: translate3d(0,0,0); opacity: .32; } 50% { transform: translate3d(12px,-24px,0); opacity: .9; } }
@keyframes shake { 0%,100% { transform: translateX(0); } 30% { transform: translateX(-7px); } 65% { transform: translateX(7px); } }
@keyframes modalUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes sheetUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes aiCoreFloat { 0%,100% { transform: scale(1.03) translateY(0); filter: saturate(1.06); } 50% { transform: scale(1.055) translateY(-5px); filter: saturate(1.18) brightness(1.08); } }
@keyframes aiCorePulse { 0%,100% { opacity: .32; transform: translateX(-8px); } 50% { opacity: .6; transform: translateX(8px); } }
@keyframes geoSignal { 0%,100% { opacity: .46; transform: scale(.72); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes geoScan { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(34px); opacity: 1; } }
@keyframes assessmentSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .geo-orbit::after,
  .geo-scan-mark i,
  .resource-graph-editor-status[data-state="saving"] i { animation: none; }
  [data-about-reveal] { opacity: 1; transform: none; transition: none; }
  .about-chapter-nav button::after { transition: none; }
}

@media (max-width: 480px) {
  .resource-map-stage { height: 476px; }
  .resource-map-toolbar { left: 8px; right: 8px; }
  .resource-node-detail { left: 8px; right: 8px; bottom: 8px; }
}

@media (max-width: 374px) {
  .hero-copy h1 { font-size: 30px; }
  .value-dashboard { grid-template-columns: repeat(2, 1fr); }
  .film-title { gap: 9px; }
  .film-title h2 { font-size: 23px; }
  .film-title h2 span { font-size: 20px; }
  .gallery-entry { min-width: 64px; min-height: 34px; padding: 0 8px 0 10px; }
  .gallery-space-head { padding: 19px 15px 17px; }
  .gallery-space-heading { gap: 9px; }
  .gallery-space-heading h1 { font-size: 26px; }
  .gallery-manager-head { align-items: stretch; flex-direction: column; }
  .gallery-manager-head p { max-width: none; }
  .gallery-upload-trigger { width: 100%; }
  .resource-graph-manager-head { align-items: stretch; flex-direction: column; }
  .resource-graph-manager-head p { max-width: none; }
  .resource-graph-save-top { width: 100%; }
  .resource-graph-editor-status { padding-left: 12px; }
  .resource-graph-editor-status > button { padding: 0 9px; }
  .resource-graph-editor-tabs { gap: 6px; }
  .resource-graph-editor-tab { min-height: 80px; padding: 10px 7px 8px; border-radius: 16px; }
  .resource-graph-editor-tab::before { top: auto; right: 7px; bottom: 6px; left: 8px; width: auto; }
  .resource-graph-editor-tab > b { top: 10px; left: 8px; }
  .resource-graph-editor-tab > i { top: 7px; right: 7px; width: 20px; height: 20px; }
  .resource-graph-editor-tab strong { font-size: 12px; }
  .resource-graph-editor-tab span,
  .resource-graph-editor-tab small,
  .resource-graph-editor-tab em { font-size: 8px; }
  .resource-graph-editor-panel { padding: 12px; border-radius: 21px; }
  .resource-graph-editor-panel-head { flex-direction: column; gap: 8px; }
  .resource-graph-editor-panel-head > em { max-width: none; text-align: left; }
  .resource-graph-field-grid { grid-template-columns: 1fr; }
  .resource-graph-field { grid-column: 1 / -1; }
  .resource-graph-editor-section { padding: 11px; }
  .resource-graph-editor-row { grid-template-columns: 1fr; }
  .resource-graph-editor-row-head,
  .resource-graph-editor-row-fields,
  .resource-graph-editor-row-actions { grid-column: 1; }
  .resource-graph-editor-row-actions { justify-content: flex-end; }
  .resource-graph-mini-button { width: 36px; height: 36px; }
  .knowledge-head { align-items: stretch; flex-direction: column; }
  .knowledge-head p { max-width: none; }
  .knowledge-upload-trigger { width: 100%; }
  .knowledge-stats { grid-template-columns: repeat(2, 1fr); }
  .knowledge-hub-head { display: grid; }
  .knowledge-quick-upload { width: 100%; }
  .knowledge-file-row { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 8px; padding: 10px; }
  .knowledge-file-row > .knowledge-file-type { width: 44px; height: 44px; border-radius: 13px; }
  .knowledge-file-copy h3 { font-size: 13px; }
  .gallery-admin-card { grid-template-columns: 88px minmax(0, 1fr); gap: 11px; }
  .gallery-admin-card > img,
  .gallery-admin-card__thumb { width: 88px; height: 88px; }
  .pipeline-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 11px;
    padding: 12px;
  }
  .pipeline-card__image { width: 108px; height: 108px; border-radius: 18px; }
  .pipeline-card__number { font-size: 49px; }
  .pipeline-card__content h3 { font-size: 18px; }
  .pipeline-card__content p { font-size: 11px; }
  .pipeline-card__tags { gap: 3px; }
  .pipeline-card__tags span { height: 25px; padding: 0 3px; font-size: 9px; }
  .pipeline-card__button { width: 62px; height: 32px; padding: 0 7px 0 5px; font-size: 12px; }
  .pipeline-card__button i { width: 21px; height: 21px; }
  .resource-constellation__heading { align-items: center; }
  .resource-constellation__heading h2 { font-size: 24px; }
  .resource-map-shell { padding: 0 0 8px; }
  .resource-map-stage { height: 452px; border-radius: 19px 19px 0 0; }
  .resource-map-toolbar { left: 8px; right: 8px; }
  .resource-map-toolbar > span b { max-width: 116px; }
  .resource-map-toolbar button { min-width: 29px; width: 29px; padding: 0; }
  .resource-graph-legend { gap: 3px; }
  .resource-graph-legend button { min-height: 32px; padding: 0 1px; gap: 2px; font-size: 7.2px; }
  .geo-workshop__heading { align-items: flex-start; }
  .geo-workshop__heading h2 { font-size: 24px; }
  .geo-status-pill { min-height: 30px; padding: 0 8px; }
  .geo-status-pill b { font-size: 9px; }
  .geo-console { padding: 14px; }
  .geo-intro { grid-template-columns: 72px minmax(0, 1fr); gap: 11px; }
  .geo-orbit { width: 72px; height: 72px; }
  .geo-intro__copy h3 { font-size: 17px; }
  .geo-intro__copy p { font-size: 10px; }
  .geo-source-grid { gap: 6px; }
  .geo-source-card { min-height: 94px; padding: 10px 7px; }
  .geo-source-card > strong { font-size: 10px; }
  .geo-source-count > strong { font-size: 22px; }
  .geo-source-card small { font-size: 8px; }
  .geo-empty-state { grid-template-columns: 50px minmax(0, 1fr); gap: 10px; padding: 12px; }
  .geo-scan-mark { width: 50px; height: 50px; }
  .geo-scan-mark::before { inset: 12px; }
  .geo-scan-mark::after { inset: 18px; }
  #home .geo-console--compact { padding: 12px; }
  #home .geo-console--compact .geo-intro { grid-template-columns: 58px minmax(0, 1fr); gap: 9px; }
  #home .geo-console--compact .geo-orbit { width: 58px; height: 58px; }
  #home .geo-console--compact .geo-intro__copy h3 { font-size: 15px; }
  #home .geo-source-grid--compact .geo-source-card { min-height: 64px; padding: 8px 6px; }
}
