@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&family=Noto+Sans+KR:wght@400;500;600;700&family=Noto+Serif+KR:wght@500;600;700&family=Spectral:ital,wght@0,500;0,600;1,500;1,600&display=swap");

:root {
  --bg: rgb(12, 14, 17);
  --bg-outer: rgb(7, 8, 11);
  --panel: rgb(20, 23, 29);
  --panel-2: rgb(30, 34, 43);
  --ink: rgb(232, 228, 216);
  --muted: rgb(169, 166, 154);
  --meta: rgb(110, 107, 98);
  --rule: rgb(46, 50, 60);
  --accent: rgb(184, 136, 74);
  --accent-ink: rgb(12, 14, 17);
  --ok: rgb(111, 142, 106);
  --bad: rgb(142, 90, 82);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg-outer);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.home-page {
  --accent: rgb(196, 149, 83);
}

body.hf-home {
  --bg: rgb(18, 22, 24);
  --bg-outer: rgb(244, 242, 235);
  --panel: rgb(252, 250, 244);
  --panel-2: rgb(232, 237, 229);
  --ink: rgb(27, 32, 34);
  --muted: rgb(91, 98, 96);
  --meta: rgb(125, 119, 103);
  --rule: rgba(39, 45, 47, .16);
  --accent: rgb(155, 112, 68);
  --accent-ink: rgb(255, 252, 244);
  --hf-neuro: rgb(76, 58, 45);
  --hf-sua: rgb(144, 89, 101);
  --hf-green: rgb(83, 113, 95);
  background:
    linear-gradient(180deg, rgb(249, 248, 243), rgb(238, 241, 235) 52%, rgb(246, 239, 232));
  color-scheme: light;
}

body.neurosophy-page {
  --bg: rgb(11, 11, 10);
  --bg-outer: rgb(6, 7, 7);
  --panel: rgb(24, 23, 20);
  --panel-2: rgb(50, 46, 39);
  --ink: rgb(232, 219, 196);
  --muted: rgb(198, 181, 151);
  --meta: rgb(139, 119, 94);
  --rule: rgba(157, 136, 109, .28);
  --accent: rgb(157, 136, 109);
  --accent-ink: rgb(8, 8, 7);
  background:
    linear-gradient(115deg, rgba(50, 46, 39, .42), transparent 42%),
    linear-gradient(180deg, rgb(6, 7, 7), rgb(13, 13, 12) 44%, rgb(24, 20, 17));
  font-family: "Noto Sans KR", "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.neurosophy-page h1,
body.neurosophy-page h2,
body.neurosophy-page h3 {
  font-family: "Noto Serif KR", "Spectral", Georgia, serif;
}

body.neurosophy-page .brand strong {
  font-family: "Noto Sans KR", "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .07em;
}

body.sua-page,
body.aesthetic-page {
  --bg: rgb(247, 248, 244);
  --bg-outer: rgb(226, 236, 231);
  --panel: rgb(255, 255, 250);
  --panel-2: rgb(236, 243, 239);
  --ink: rgb(29, 39, 36);
  --muted: rgb(83, 101, 95);
  --meta: rgb(126, 141, 135);
  --rule: rgb(196, 210, 203);
  --accent: rgb(176, 104, 120);
  --accent-ink: rgb(255, 255, 250);
  color-scheme: light;
}

body::after {
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 100% 4px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
}

body.sua-page::after,
body.aesthetic-page::after {
  background-image: linear-gradient(rgba(29,39,36,.04) 1px, transparent 1px);
}

body.hf-home::after {
  background-image:
    linear-gradient(rgba(27, 32, 34, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 32, 34, .025) 1px, transparent 1px);
  background-size: 100% 5px, 96px 100%;
  opacity: .72;
}

body.neurosophy-page::before {
  background-image: linear-gradient(90deg, rgba(232, 219, 196, .06) 1px, transparent 1px);
  background-size: 112px 100%;
  content: "";
  inset: 0;
  opacity: .22;
  pointer-events: none;
  position: fixed;
}

a {
  color: inherit;
}

.shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 24px;
}

.nav {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.mark {
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
  height: 9px;
  width: 9px;
}

.brand strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hf-nav {
  min-height: 82px;
}

.hf-logo {
  gap: 12px;
}

.hf-mark-img {
  aspect-ratio: 1;
  display: block;
  flex: 0 0 auto;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.hf-wordmark {
  display: grid;
  gap: 1px;
}

.hf-wordmark strong {
  color: var(--ink);
  font-family: "IBM Plex Sans", "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
}

.hf-wordmark span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .02em;
}

.hf-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  min-height: min(760px, calc(100svh - 82px));
  padding: 58px 0 44px;
}

.hf-hero-copy {
  max-width: 660px;
}

.hf-nameplate {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 11px;
  letter-spacing: .14em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hf-nameplate span + span {
  border-left: 1px solid rgba(155, 112, 68, .35);
  color: var(--meta);
  font-family: "Noto Sans KR", "IBM Plex Sans", system-ui, sans-serif;
  letter-spacing: .08em;
  padding-left: 11px;
}

.hf-hero h1 {
  color: var(--ink);
  font-family: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  font-size: clamp(50px, 6.4vw, 88px);
  font-weight: 600;
  line-height: .97;
  max-width: 780px;
}

.hf-hero .lead {
  color: var(--muted);
  max-width: 630px;
}

.hf-door-grid {
  border-top: 1px solid rgba(39, 45, 47, .2);
  display: grid;
  gap: 0;
  width: 100%;
}

.hf-door {
  --door-fade-end: 100%;
  --door-fade-start: 54%;
  background: transparent;
  border-bottom: 1px solid rgba(39, 45, 47, .2);
  color: var(--ink);
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: minmax(0, 1fr);
  isolation: isolate;
  min-height: 188px;
  overflow: hidden;
  padding: 28px 0 28px 18px;
  position: relative;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  will-change: transform;
}

.hf-door-mvgo {
  border-color: rgba(155, 112, 68, .32);
}

.hf-door-neuro {
  border-color: rgba(76, 58, 45, .32);
}

.hf-door-sua {
  border-color: rgba(144, 89, 101, .34);
}

.hf-door::before {
  content: "";
  bottom: 20px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 20px;
  transition: bottom .22s ease, top .22s ease, width .22s ease;
  width: 2px;
}

.hf-door::after {
  background: linear-gradient(90deg, rgb(248, 247, 241) 0%, rgb(248, 247, 241) var(--door-fade-start), rgba(248, 247, 241, 0) var(--door-fade-end));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hf-door-neuro,
.hf-door-sua {
  --door-fade-end: 100%;
  --door-fade-start: 54%;
}

.hf-door-sua {
  --door-fade-end: 100%;
  --door-fade-start: 54%;
}

.hf-door-mvgo::before {
  background: linear-gradient(180deg, rgba(155, 112, 68, .86), rgba(155, 112, 68, .14));
}

.hf-door-neuro::before {
  background: linear-gradient(180deg, rgba(76, 58, 45, .86), rgba(76, 58, 45, .14));
}

.hf-door-sua::before {
  background: linear-gradient(180deg, rgba(144, 89, 101, .86), rgba(144, 89, 101, .14));
}

.hf-door:hover {
  background: rgba(255, 252, 246, .72);
  border-color: rgba(39, 45, 47, .42);
  box-shadow: 0 20px 48px rgba(39, 45, 47, .12);
  transform: translateX(8px);
}

.hf-door:hover::before {
  bottom: 16px;
  top: 16px;
  width: 4px;
}

.hf-door-copy,
.hf-door-media {
  position: relative;
}

.hf-door-copy {
  align-content: center;
  display: grid;
  gap: 8px;
  max-width: 580px;
  transition: transform .22s ease;
  z-index: 2;
}

.hf-door:hover .hf-door-copy {
  transform: translateX(4px);
}

.hf-door-label {
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hf-door-copy strong {
  font-family: "Noto Sans KR", "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.hf-door-copy span:last-child {
  color: var(--muted);
  line-height: 1.48;
}

.hf-tune-line {
  display: block;
}

.hf-door-media {
  align-items: center;
  align-self: auto;
  border: 0;
  border-radius: 0;
  display: flex;
  inset: 0 0 0 34%;
  justify-content: center;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 0;
}

.hf-door-media::before {
  content: none;
}

.hf-door-media::after {
  content: none;
}

.hf-door-mvgo .hf-door-media {
  background: transparent;
  --door-image: url("/assets/mvgo-return-cover-dark-cb-revised-gpt2-2026-05-24.png");
}

.hf-door-neuro .hf-door-media {
  background: transparent;
  --door-image: url("/assets/neuro-gallery-meta-prologue-edge-expanded-gpt2-2026-05-31.png");
}

.hf-door-sua .hf-door-media {
  background: transparent;
  --door-image: url("/assets/sua-window-product-sunlight-left-expanded-2026-06-01.png");
}

.hf-door-media img {
  display: block;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  object-position: center;
  position: relative;
  transform: translate3d(var(--door-img-x, 0), var(--door-img-y, 0), 0) scale(var(--door-img-scale, 1));
  transform-origin: center center;
  transition: filter .22s ease, transform .22s ease;
  width: 100%;
  z-index: 1;
}

.hf-door:hover .hf-door-media img {
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transform: translate3d(var(--door-img-x, 0), var(--door-img-y, 0), 0) scale(var(--door-img-scale, 1));
}

.hf-door-mvgo .hf-door-copy {
  max-width: 567px;
}

.hf-door-mvgo .hf-door-media {
  inset: 0 0 0 34%;
}

.hf-door-mvgo .hf-door-media img {
  --door-img-scale: 1.165;
  --door-img-x: -12px;
  --door-img-y: 0px;
  object-position: 60% 50%;
}

.hf-door-neuro .hf-door-copy {
  max-width: 580px;
}

.hf-door-neuro .hf-door-media {
  inset: 0 0 0 25%;
}

.hf-door-neuro .hf-door-media img {
  --door-img-scale: 1.02;
  --door-img-x: 115px;
  --door-img-y: 0px;
  object-position: 70% 50%;
  transform-origin: center center;
}

.hf-door-sua .hf-door-copy {
  max-width: 580px;
}

.hf-door-sua .hf-door-media {
  inset: 0 0 0 34%;
}

.hf-door-sua .hf-door-media img {
  --door-img-scale: 1.72;
  --door-img-x: -56px;
  --door-img-y: 38px;
  object-position: 58% 20%;
  transform-origin: center center;
}

.hf-adjust-active {
  padding-bottom: 310px;
}

.hf-adjust-panel {
  background: rgba(248, 247, 241, .96);
  border-top: 1px solid rgba(39, 45, 47, .18);
  bottom: 0;
  box-shadow: 0 -20px 60px rgba(39, 45, 47, .13);
  color: #272d2f;
  display: grid;
  font-family: "Noto Sans KR", "IBM Plex Sans", system-ui, sans-serif;
  gap: 12px;
  left: 0;
  max-height: 46vh;
  overflow: auto;
  padding: 14px 18px 16px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 50;
}

.hf-adjust-head {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.hf-adjust-head strong {
  font-size: 15px;
  white-space: nowrap;
}

.hf-adjust-tabs {
  display: flex;
  flex: 1;
  gap: 6px;
  justify-content: center;
}

.hf-adjust-head a,
.hf-adjust-tabs button,
.hf-adjust-actions button {
  background: #272d2f;
  border: 1px solid #272d2f;
  color: #f8f7f1;
  cursor: pointer;
  font: inherit;
  padding: 8px 11px;
  text-decoration: none;
}

.hf-adjust-tabs button {
  background: transparent;
  color: #272d2f;
  min-width: 92px;
}

.hf-adjust-tabs button.is-selected {
  background: #9b7044;
  border-color: #9b7044;
  color: #fffaf0;
}

.hf-adjust-panel label {
  display: grid;
  gap: 7px;
}

.hf-adjust-panel label span {
  color: #6b6660;
  font-size: 12px;
}

.hf-adjust-ranges {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.hf-adjust-range {
  grid-template-columns: 1fr;
}

.hf-adjust-range input[type="range"] {
  accent-color: #9b7044;
  cursor: pointer;
  width: 100%;
}

.hf-adjust-range output {
  color: #272d2f;
  font: 11px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hf-adjust-copy-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(180px, .6fr) minmax(260px, 1fr);
}

.hf-adjust-text {
  align-items: stretch;
  grid-template-columns: 1fr;
}

.hf-adjust-active .hf-door {
  cursor: default;
}

.hf-adjust-active .hf-door:hover,
.hf-adjust-active .hf-door:hover .hf-door-copy {
  transform: none;
}

.hf-adjust-active .hf-door-selected {
  outline: 1px solid rgba(155, 112, 68, .72);
  outline-offset: -1px;
}

.hf-direct-stage {
  display: none;
}

.hf-adjust-active .hf-door-selected .hf-direct-stage {
  cursor: grab;
  display: block;
  inset: 0;
  position: absolute;
  z-index: 6;
}

.hf-adjust-active .hf-direct-stage.is-dragging {
  cursor: grabbing;
}

.hf-direct-stage::before {
  border: 1px dashed rgba(155, 112, 68, .62);
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.hf-direct-stage::after {
  background: rgba(155, 112, 68, .72);
  bottom: 10px;
  content: "";
  left: var(--door-fade-start);
  pointer-events: none;
  position: absolute;
  top: 10px;
  width: 1px;
}

.hf-direct-handle {
  align-items: center;
  background: rgba(248, 247, 241, .92);
  border: 1px solid rgba(39, 45, 47, .42);
  color: #272d2f;
  display: flex;
  font: 10px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  height: 22px;
  justify-content: center;
  position: absolute;
  width: 22px;
}

.hf-direct-handle.is-scale {
  bottom: 10px;
  cursor: nwse-resize;
  right: 10px;
}

.hf-direct-handle.is-fade {
  cursor: ew-resize;
  left: var(--door-fade-start);
  top: 50%;
  transform: translate(-50%, -50%);
}

.hf-adjust-text textarea,
.hf-adjust-output {
  background: rgba(255, 252, 246, .86);
  border: 1px solid rgba(39, 45, 47, .18);
  color: #272d2f;
  font: 12px/1.45 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 8px;
  resize: vertical;
  width: 100%;
}

.hf-adjust-actions {
  align-items: stretch;
  display: flex;
  gap: 8px;
}

.hf-adjust-actions button[data-action="reset"] {
  background: transparent;
  color: #272d2f;
}

.hf-adjust-output {
  min-height: 38px;
}

.hf-mission-band {
  align-items: start;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
  padding: 68px 0;
}

.hf-section-copy {
  max-width: 560px;
}

.hf-section-copy h2,
.hf-trust h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
}

.hf-section-copy p,
.hf-trust p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 18px 0 0;
}

.hf-card {
  background: rgba(255, 253, 248, .68);
  border-color: var(--rule);
}

.hf-card p {
  color: var(--muted);
}

.hf-cycle-section {
  border-top: 1px solid var(--rule);
  padding: 70px 0;
}

.hf-cycle-section .hf-section-copy {
  max-width: 760px;
}

.hf-cycle-figure {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 34px 0 0;
  overflow: hidden;
  padding: 0;
}

.hf-cycle-figure img {
  border: 1px solid rgba(39, 45, 47, .1);
  border-radius: 4px;
  display: block;
  height: auto;
  width: 100%;
}

.hf-cycle-values {
  border-top: 1px solid rgba(39, 45, 47, .2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.hf-cycle-values article {
  border-right: 1px solid rgba(39, 45, 47, .16);
  padding: 20px 24px 0 0;
}

.hf-cycle-values article + article {
  padding-left: 24px;
}

.hf-cycle-values article:last-child {
  border-right: 0;
}

.hf-cycle-values span {
  color: var(--accent);
  display: block;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hf-cycle-values strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 9px;
}

.hf-cycle-values p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.hf-trust {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(155, 112, 68, .14), rgba(83, 113, 95, .12) 48%, rgba(144, 89, 101, .12)),
    rgba(255, 252, 244, .88);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  margin: 8px 0 72px;
  padding: clamp(28px, 5vw, 48px);
}

.hf-trust-links {
  display: grid;
  gap: 10px;
}

.hf-trust-links a {
  align-items: center;
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-size: 15px;
  font-weight: 600;
  min-height: 48px;
  padding: 0 16px;
  text-decoration: none;
}

.hf-trust-links a:hover {
  border-color: rgba(155, 112, 68, .44);
  color: var(--accent);
}

.hf-footer {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.hero {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, .86fr) minmax(460px, 1.14fr);
  padding: 88px 0 72px;
}

.hero.with-media {
  align-items: center;
}

.hero.brand-hero,
.hero.home-hero {
  align-items: center;
}

.hero.compact {
  grid-template-columns: minmax(0, 1fr);
  max-width: 780px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 80px);
  line-height: .98;
  max-width: 850px;
}

h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  font-size: 25px;
  line-height: 1.16;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 720px;
}

.body-copy {
  color: var(--muted);
  margin: 16px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 1 auto;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.panel {
  background: linear-gradient(180deg, var(--panel), rgba(20, 23, 29, .68));
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 26px;
}

.panel p:first-child {
  margin-top: 0;
}

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

.product-figure {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  overflow: visible;
}

.product-figure img {
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.product-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 2px 0;
  text-align: center;
}

.hero-figure {
  justify-self: center;
  max-width: 680px;
  width: 100%;
}

.clean-media {
  justify-self: center;
}

.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.section {
  border-top: 1px solid var(--rule);
  padding: 72px 0;
}

.section-head {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .85fr);
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(20, 23, 29, .72);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px;
}

body.sua-page .card,
body.sua-page .panel,
body.aesthetic-page .card,
body.aesthetic-page .panel {
  background: rgba(255, 255, 250, .78);
}

body.neurosophy-page .card,
body.neurosophy-page .panel {
  background: rgba(24, 20, 17, .76);
}

.card .kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.action-card {
  display: flex;
  flex-direction: column;
}

.text-link {
  color: var(--accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink);
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.route-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.social-card {
  color: var(--ink);
  min-height: 270px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.social-card::after {
  background: radial-gradient(circle at top right, rgba(176, 104, 120, .16), transparent 44%);
  content: "";
  inset: 0;
  opacity: .75;
  pointer-events: none;
  position: absolute;
}

.social-card:hover {
  border-color: rgba(176, 104, 120, .7);
  box-shadow: 0 18px 46px rgba(52, 72, 65, .12);
  transform: translateY(-2px);
}

.social-card > * {
  position: relative;
  z-index: 1;
}

.social-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.social-logo {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.social-logo svg {
  display: block;
  height: 25px;
  width: 25px;
}

.social-logo.instagram {
  background: linear-gradient(135deg, #feda75, #d62976 46%, #4f5bd5);
}

.social-logo.instagram svg {
  fill: none;
  stroke: rgb(255, 255, 250);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-logo.tiktok {
  background: rgb(18, 18, 20);
  box-shadow: inset -4px 0 0 rgba(238, 29, 82, .65), inset 4px 0 0 rgba(105, 201, 208, .72);
}

.social-logo.tiktok svg {
  fill: rgb(255, 255, 250);
}

.social-logo.youtube {
  background: #ff0033;
}

.social-logo.youtube svg rect {
  fill: #ff0033;
}

.social-logo.youtube svg path {
  fill: rgb(255, 255, 250);
}

.social-arrow,
.social-handle {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.social-arrow {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 6px 10px;
}

.social-handle {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
}

.media-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  width: 100%;
}

.media-stack img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-stack img.wide {
  aspect-ratio: 16 / 9;
  grid-column: 1 / -1;
}

.neurosophy-stack {
  max-width: 620px;
}

.sua-stack {
  max-width: 580px;
}

.neuro-hero {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  min-height: min(720px, calc(100svh - 72px));
  padding: 68px 0 48px;
}

.neuro-hero-copy h1 {
  color: rgb(232, 219, 196);
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  max-width: 700px;
  word-break: keep-all;
}

.neuro-hero .lead {
  max-width: 620px;
  word-break: keep-all;
}

.neuro-platform-panel {
  display: grid;
  gap: 14px;
  width: 100%;
}

.neuro-platform-card {
  background:
    linear-gradient(135deg, rgba(157, 136, 109, .13), rgba(24, 23, 20, .56)),
    rgba(16, 15, 13, .76);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 142px;
  overflow: hidden;
  padding: 22px min(42%, 210px) 22px 22px;
  position: relative;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.neuro-platform-card:hover {
  background:
    linear-gradient(135deg, rgba(157, 136, 109, .2), rgba(24, 23, 20, .66)),
    rgba(16, 15, 13, .84);
  border-color: rgba(232, 219, 196, .38);
  transform: translateY(-2px);
}

.neuro-platform-card.is-primary {
  background:
    linear-gradient(135deg, rgba(157, 136, 109, .28), rgba(24, 23, 20, .7)),
    rgba(18, 16, 13, .86);
}

.neuro-platform-kicker {
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}

.neuro-platform-card strong {
  font-family: "Noto Serif KR", "Spectral", Georgia, serif;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  z-index: 2;
}

.neuro-platform-card span:not(.neuro-platform-kicker):not(.neuro-platform-arrow):not(.neuro-platform-art) {
  color: var(--muted);
  line-height: 1.55;
  z-index: 2;
}

.neuro-platform-card em {
  color: var(--meta);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-style: normal;
  z-index: 2;
}

.neuro-platform-art {
  bottom: 0;
  display: block;
  opacity: .62;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: min(40%, 190px);
  z-index: 1;
}

.neuro-platform-art::before {
  background:
    linear-gradient(90deg, rgba(16, 15, 13, .96), rgba(16, 15, 13, .62) 32%, rgba(16, 15, 13, .08)),
    linear-gradient(180deg, rgba(16, 15, 13, .12), rgba(16, 15, 13, .42));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.neuro-platform-art img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.neuro-platform-arrow {
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  z-index: 3;
}

.neuro-window {
  border-left: 1px solid var(--rule);
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 28px;
}

.neuro-window img {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  display: block;
  object-fit: cover;
  width: 100%;
}

.neuro-window figcaption,
.neuro-gallery-card figcaption {
  color: var(--meta);
  font-size: 13px;
  line-height: 1.5;
}

.neuro-reading-room {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
}

.neuro-section-copy {
  max-width: 450px;
}

.neuro-route-list {
  border-top: 1px solid var(--rule);
}

.neuro-route-item {
  align-items: start;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 22px;
  grid-template-columns: 122px minmax(0, 1fr) max-content;
  padding: 24px 0;
}

.neuro-route-item code,
.neuro-index code {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.neuro-route-item h3 {
  font-size: 28px;
}

.neuro-route-item p {
  color: var(--muted);
  margin: 8px 0 0;
}

.neuro-route-item .text-link {
  margin-top: 4px;
  white-space: nowrap;
}

.neuro-archive {
  display: grid;
  gap: 42px;
}

.neuro-gallery {
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 34px;
}

.neuro-gallery .neuro-section-copy {
  max-width: 760px;
}

.neuro-gallery-masonry {
  --neuro-gallery-columns: 3;
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(var(--neuro-gallery-columns), minmax(0, 1fr));
}

.neuro-masonry-column {
  align-content: start;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.neuro-gallery-tile {
  background: rgba(16, 15, 13, .58);
  border: 1px solid var(--rule);
  border-radius: 4px;
  cursor: zoom-in;
  display: block;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.4s ease;
  width: 100%;
}

.neuro-gallery-tile[hidden] {
  display: none;
}

.neuro-gallery-tile.is-visible {
  opacity: 1;
}

.neuro-gallery-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.neuro-gallery-tile img {
  display: block;
  height: auto;
  transition: transform .38s ease, filter .38s ease;
  width: 100%;
}

.neuro-gallery-tile:hover img {
  filter: brightness(1.05);
  transform: scale(1.018);
}

.neuro-gallery-more {
  align-items: center;
  color: var(--accent);
  display: flex;
  justify-content: center;
  min-height: 72px;
}

.neuro-gallery-more[hidden] {
  display: none;
}

.neuro-gallery-more.is-loading {
  bottom: 26px;
  left: 0;
  min-height: 44px;
  pointer-events: none;
  position: fixed;
  right: 0;
  z-index: 6;
}

.neuro-gallery-more-arrow {
  animation: neuro-more-arrow 1.35s ease-in-out infinite;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  display: block;
  height: 26px;
  opacity: .74;
  transform: rotate(45deg);
  width: 26px;
}

.neuro-gallery-more.is-loading .neuro-gallery-more-arrow {
  animation: neuro-more-loading .82s linear infinite;
  border: 1px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  height: 22px;
  opacity: .82;
  transform: none;
  width: 22px;
}

@keyframes neuro-more-arrow {
  0%,
  100% {
    opacity: .42;
    transform: translateY(-4px) rotate(45deg);
  }

  50% {
    opacity: .95;
    transform: translateY(5px) rotate(45deg);
  }
}

@keyframes neuro-more-loading {
  to {
    transform: rotate(360deg);
  }
}

.neuro-lightbox {
  align-items: center;
  background:
    radial-gradient(circle at 50% 62%, rgba(157, 136, 109, .12), transparent 34%),
    rgba(4, 4, 4, .9);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 50;
}

.neuro-lightbox[hidden] {
  display: none;
}

.has-neuro-lightbox {
  overflow: hidden;
}

.neuro-lightbox-frame {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100svh - 56px);
  max-width: min(1040px, calc(100vw - 84px));
  position: relative;
}

.neuro-lightbox-image {
  border: 1px solid rgba(232, 219, 196, .22);
  border-radius: 4px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .56);
  display: block;
  max-height: calc(100svh - 124px);
  max-width: 100%;
  object-fit: contain;
}

.neuro-lightbox-link {
  align-self: center;
  background: rgba(232, 219, 196, .88);
  border: 1px solid rgba(232, 219, 196, .42);
  border-radius: 999px;
  color: rgb(16, 15, 13);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 13px 10px;
  text-decoration: none;
}

.neuro-lightbox-link:focus-visible,
.neuro-lightbox-close:focus-visible,
.neuro-lightbox-nav:focus-visible {
  outline: 2px solid rgb(232, 219, 196);
  outline-offset: 4px;
}

.neuro-lightbox-nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(232, 219, 196);
  cursor: pointer;
  display: inline-flex;
  font-family: "Spectral", "Noto Serif KR", serif;
  font-size: 24px;
  font-weight: 200;
  height: 44px;
  justify-content: center;
  line-height: 1;
  opacity: .66;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .16s ease, transform .16s ease;
  width: 16px;
  z-index: 2;
}

.neuro-lightbox-nav:hover {
  opacity: 1;
}

.neuro-lightbox-prev {
  left: -30px;
}

.neuro-lightbox-prev::before {
  content: "<";
}

.neuro-lightbox-next {
  right: -30px;
}

.neuro-lightbox-next::before {
  content: ">";
}

.neuro-lightbox-close {
  align-items: center;
  background: rgba(16, 15, 13, .72);
  border: 1px solid rgba(232, 219, 196, .26);
  border-radius: 999px;
  color: rgb(232, 219, 196);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 22px;
  top: 22px;
  width: 38px;
  z-index: 51;
}

.neuro-lightbox-close::before,
.neuro-lightbox-close::after {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  width: 15px;
}

.neuro-lightbox-close::before {
  transform: rotate(45deg);
}

.neuro-lightbox-close::after {
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .neuro-gallery-more-arrow,
  .neuro-gallery-more.is-loading .neuro-gallery-more-arrow {
    animation: none;
  }

  .neuro-gallery-tile,
  .neuro-gallery-tile img,
  .neuro-lightbox-nav {
    transition: none;
  }
}

.neuro-gallery-grid {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr);
}

.neuro-gallery-column {
  display: grid;
  gap: 22px;
}

.neuro-gallery-card {
  margin: 0;
}

.neuro-gallery-card img {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
  display: block;
  object-fit: cover;
  width: 100%;
}

.neuro-gallery-card figcaption {
  padding-top: 10px;
}

.neuro-gallery-large img {
  aspect-ratio: 16 / 10;
}

.neuro-note {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.neuro-note h3 {
  color: var(--ink);
  font-size: 26px;
}

.neuro-note p {
  color: var(--muted);
  margin: 10px 0 0;
}

.neuro-domain {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr);
}

.neuro-domain-copy {
  max-width: 520px;
}

.neuro-index {
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}

.neuro-index div {
  display: grid;
  gap: 18px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 18px 20px;
}

.neuro-index div + div {
  border-top: 1px solid var(--rule);
}

.neuro-index span {
  color: var(--muted);
}

.sua-stack img {
  box-shadow: 0 18px 55px rgba(52, 72, 65, .16);
}

.sua-stack img:nth-child(2) {
  margin-top: 34px;
}

.route-table {
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.route-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 18px 20px;
}

.route-row + .route-row {
  border-top: 1px solid var(--rule);
}

.route-row code {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

.question-table .route-row {
  grid-template-columns: 54px minmax(0, 1fr);
}

.product-section {
  scroll-margin-top: 24px;
}

.product-band {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(460px, 1.12fr) minmax(0, .88fr);
}

.product-copy h3 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
}

.product-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 18px 0 0;
}

.fine {
  color: var(--meta);
  font-size: 13px;
  line-height: 1.55;
}

.legal h2 {
  margin-top: 42px;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
}

.footer {
  border-top: 1px solid var(--rule);
  color: var(--meta);
  font-size: 13px;
  padding: 30px 0 42px;
}

@media (max-width: 960px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .neuro-hero,
  .neuro-reading-room,
  .neuro-gallery-grid,
  .neuro-domain,
  .section-head,
  .product-band,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hf-hero,
  .hf-mission-band,
  .hf-trust {
    grid-template-columns: 1fr;
  }

  .hf-hero {
    min-height: 0;
    padding: 48px 0 42px;
  }

  .hf-footer {
    flex-direction: column;
  }

  .media-stack {
    margin-top: 6px;
  }

  .neuro-hero {
    gap: 34px;
    min-height: 0;
  }

  .neuro-window {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 22px;
  }

  .neuro-route-item {
    grid-template-columns: 1fr;
  }

  .neuro-route-item .text-link {
    white-space: normal;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .neuro-hero {
    padding: 58px 0 54px;
  }

  .neuro-platform-card {
    min-height: 128px;
  }

  .section {
    padding: 54px 0;
  }

  .route-row {
    grid-template-columns: 1fr;
  }

  .neuro-index div {
    grid-template-columns: 1fr;
  }

  .question-table .route-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .shell {
    padding: 0 18px;
  }

  .nav {
    min-height: 0;
    padding: 12px 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .nav-links {
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hf-mark-img {
    height: 38px;
    width: 38px;
  }

  .hf-wordmark strong {
    font-size: 15px;
  }

  .hf-wordmark span {
    font-size: 11px;
  }

  .hf-hero {
    gap: 26px;
    padding: 34px 0 32px;
  }

  .hf-nameplate {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hf-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1;
  }

  .hf-hero .lead {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 20px;
  }

  .hf-door {
    gap: 12px;
    min-height: 160px;
    padding: 18px 14px;
  }

  .hf-door::after {
    --door-fade-end: 100%;
    --door-fade-start: 54%;
  }

  .hf-door-neuro::after,
  .hf-door-sua::after {
    --door-fade-end: 100%;
    --door-fade-start: 54%;
  }

  .hf-door-media {
    inset: 0 0 0 30%;
  }

  .hf-door-copy strong {
    font-size: 22px;
  }

  .hf-door-copy span:last-child {
    font-size: 13px;
    line-height: 1.38;
  }

  .hf-door-media img {
    height: 100%;
    max-width: none;
    width: 100%;
  }

  .hf-adjust-active {
    padding-bottom: 390px;
  }

  .hf-adjust-panel {
    max-height: 58vh;
    padding: 12px;
  }

  .hf-adjust-head {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .hf-adjust-tabs {
    flex-basis: 100%;
    order: 3;
  }

  .hf-adjust-tabs button {
    min-width: 0;
    padding: 8px;
    width: 100%;
  }

  .hf-adjust-ranges {
    grid-template-columns: 1fr;
  }

  .hf-adjust-copy-grid {
    grid-template-columns: 1fr;
  }

  .hf-adjust-actions {
    flex-wrap: wrap;
  }

  .hf-adjust-output {
    flex-basis: 100%;
  }

  .hf-mission-band {
    gap: 24px;
    padding: 50px 0;
  }

  .hf-cycle-section {
    padding: 50px 0;
  }

  .hf-cycle-figure {
    margin-top: 24px;
  }

  .hf-cycle-values {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hf-cycle-values article,
  .hf-cycle-values article + article {
    border-right: 0;
    border-top: 1px solid rgba(39, 45, 47, .14);
    padding: 16px 0 0;
  }

  .hf-cycle-values article:first-child {
    border-top: 0;
  }

  .hf-section-copy h2,
  .hf-trust h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hf-section-copy p,
  .hf-trust p {
    font-size: 16px;
  }

  .hf-trust {
    margin-bottom: 50px;
    padding: 22px;
  }

  .media-stack {
    gap: 10px;
  }

  .sua-stack img:nth-child(2) {
    margin-top: 18px;
  }

  .route-card {
    min-height: 0;
  }

  .neuro-hero-copy h1 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.12;
  }

  .neuro-hero {
    gap: 20px;
    padding: 32px 0 34px;
  }

  .neuro-hero .eyebrow {
    margin-bottom: 12px;
  }

  .neuro-hero .lead {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 16px;
  }

  .neuro-platform-panel {
    gap: 8px;
  }

  .neuro-platform-card {
    gap: 3px;
    min-height: 106px;
    padding: 14px 118px 14px 16px;
  }

  .neuro-platform-card strong {
    font-size: 20px;
  }

  .neuro-platform-card span:not(.neuro-platform-kicker):not(.neuro-platform-arrow):not(.neuro-platform-art) {
    font-size: 13px;
    line-height: 1.4;
  }

  .neuro-platform-art {
    opacity: .52;
    width: 112px;
  }

  .neuro-platform-card em {
    font-size: 11px;
  }

  .neuro-platform-arrow {
    height: 30px;
    right: 12px;
    top: 12px;
    width: 30px;
  }

  .neuro-gallery-masonry {
    --neuro-gallery-columns: 1;
  }

  .neuro-gallery-more {
    min-height: 62px;
  }

  .neuro-lightbox {
    padding: 18px;
  }

  .neuro-lightbox-frame {
    max-height: calc(100svh - 36px);
    max-width: calc(100vw - 56px);
  }

  .neuro-lightbox-image {
    max-height: calc(100svh - 110px);
  }

  .neuro-lightbox-nav {
    font-size: 21px;
    height: 38px;
    width: 14px;
  }

  .neuro-lightbox-prev {
    left: -22px;
  }

  .neuro-lightbox-next {
    right: -22px;
  }
}
