:root {
  --ink: #15151f;
  --muted: #646b7a;
  --paper: #fffaf0;
  --panel: #ffffff;
  --line: rgba(21, 21, 31, 0.14);
  --pink: #ff4f9a;
  --coral: #ff7a59;
  --yellow: #ffd84d;
  --green: #27d98b;
  --cyan: #29c7ff;
  --blue: #3f63ff;
  --shadow: 0 24px 70px rgba(21, 21, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(21, 21, 31, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 21, 31, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #fffaf0 0%, #fff4fb 48%, #ebfbff 100%);
  background-size: 34px 34px, 34px 34px, auto;
  overflow-x: hidden;
}

body.dark {
  --ink: #f7f2ff;
  --muted: #c1bfd0;
  --paper: #11131e;
  --panel: #181b2a;
  --line: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #0d1019 0%, #171429 54%, #071d26 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 50;
  width: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan), var(--green));
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark,
.theme-toggle {
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #15151f;
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  font-size: 0.82rem;
}

.nav-links {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
}

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

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #15151f;
  background: var(--yellow);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.eyebrow,
.section-kicker,
.project-tag {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-text {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.primary {
  color: #ffffff;
  background: var(--ink);
}

.secondary {
  color: #15151f;
  background: var(--yellow);
}

.ghost {
  color: var(--ink);
  background: var(--panel);
}

.hero-panel {
  display: grid;
  min-height: 470px;
  place-items: center;
}

.profile-card {
  position: relative;
  width: min(100%, 430px);
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 216, 77, 0.95) 0 12%, transparent 13%),
    radial-gradient(circle at 88% 24%, rgba(41, 199, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(145deg, rgba(255, 79, 154, 0.9), rgba(39, 217, 139, 0.9));
  box-shadow: 18px 18px 0 var(--ink), var(--shadow);
  color: #15151f;
}

.profile-card::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  content: "";
  border: 3px solid #15151f;
  border-radius: 50%;
  background: #ffffff;
}

.avatar {
  display: grid;
  width: 116px;
  height: 116px;
  margin-bottom: 24px;
  place-items: center;
  border: 3px solid #15151f;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 8px 8px 0 #15151f;
  font-size: 4rem;
  font-weight: 900;
}

.profile-label {
  width: fit-content;
  padding: 8px 12px;
  border: 2px solid #15151f;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-card h2 {
  max-width: 320px;
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.profile-card p:last-child {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.55;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.ticker span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.28);
  font-weight: 900;
  text-align: center;
}

.ticker span:nth-child(2) {
  background: var(--pink);
}

.ticker span:nth-child(3) {
  color: #15151f;
  background: var(--yellow);
}

.ticker span:nth-child(4) {
  background: var(--blue);
}

.section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
  background: var(--paper);
}

.split-section p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.projects-section {
  background: color-mix(in srgb, var(--panel) 78%, transparent);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 9px 9px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 13px 13px 0 var(--ink);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}

.project-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 230px;
  border-bottom: 3px solid var(--ink);
  color: #15151f;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--cyan));
}

.project-visual span {
  display: grid;
  place-items: center;
  border-right: 3px solid #15151f;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 900;
}

.project-visual span:last-child {
  border-right: 0;
}

.piano-visual {
  background: linear-gradient(135deg, #10111a, var(--pink), var(--cyan));
  color: #ffffff;
}

.voice-visual {
  background: linear-gradient(135deg, #0b1020, #56eaff, #b9ff63);
  color: #101820;
}

.pialo-visual {
  background: linear-gradient(135deg, #1a0711, #ff3bd4, #ffef7a);
  color: #ffffff;
}

.project-card div {
  padding: 24px;
}

.project-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.featured {
  grid-column: span 2;
}

.single-project {
  grid-template-columns: minmax(0, 1fr);
}

.ai-project {
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, var(--pink), var(--cyan), var(--green)) border-box;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: #15151f;
  background: var(--yellow);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.project-actions a:first-child {
  color: #ffffff;
  background: var(--ink);
}

.tool-shell {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 12px 12px 0 var(--ink);
}

.script-tool {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
}

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

.script-tool label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.script-tool input,
.script-tool select,
.script-tool textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel) 92%, #ffffff);
  font: inherit;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
}

.script-tool textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.65;
}

.script-tool input:focus,
.script-tool select:focus,
.script-tool textarea:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-actions .button {
  min-height: 48px;
  cursor: pointer;
}

.tool-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.project-tool-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 88px) clamp(28px, 5vw, 54px);
}

.project-tool-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8rem);
}

.project-tool-hero p:last-child {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.tool-app {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 6vw, 88px) clamp(72px, 9vw, 110px);
}

.tool-sidebar,
.tool-workspace,
.workflow-card,
.report-box,
.metric {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 8px 8px 0 var(--ink);
}

.tool-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 14px;
}

.side-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.side-panel h2 {
  margin: 0;
  font-size: 1rem;
}

.side-panel label,
.editor-pane {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.side-panel input,
.side-panel select,
.side-panel textarea,
.editor-pane textarea,
.chat-controls input,
.chat-controls select {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-weight: 600;
}

.tool-workspace {
  min-width: 0;
  padding: 16px;
}

.tool-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-tab,
.btn {
  min-height: 40px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

.mini-tab.active,
.btn.primary,
.btn.hot {
  color: #ffffff;
  background: var(--ink);
}

.btn.lime {
  color: #15151f;
  background: var(--green);
}

.btn.magenta {
  color: #ffffff;
  background: var(--pink);
}

.btn.danger {
  color: #ffffff;
  background: #ef3340;
}

.btn.file,
.button.ghost {
  position: relative;
  overflow: hidden;
}

.btn.file input,
.button.ghost input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.mini-panel {
  display: none;
}

.mini-panel.active {
  display: grid;
  gap: 16px;
}

.workflow-card {
  padding: 16px;
}

.workflow-card h3 {
  margin-bottom: 12px;
}

.split-panes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.editor-pane {
  min-width: 0;
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 7px 7px 0 var(--ink);
}

.editor-pane header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editor-pane header h3 {
  margin: 0;
}

.editor-pane header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.editor-pane textarea {
  min-height: 420px;
  resize: vertical;
  line-height: 1.65;
}

.bottom-actions {
  justify-content: flex-end;
}

.report-box {
  min-height: 380px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  color: var(--ink);
  white-space: pre-wrap;
  line-height: 1.65;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
}

.metric strong {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.skills-section {
  background: #15151f;
  color: #ffffff;
}

.skills-section .section-kicker {
  color: var(--green);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-list span {
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #15151f;
  background: #ffffff;
  font-weight: 900;
}

.skill-list span:nth-child(3n + 1) {
  background: var(--yellow);
}

.skill-list span:nth-child(3n + 2) {
  background: var(--cyan);
}

.skill-list span:nth-child(3n) {
  background: var(--pink);
}

.quote-band {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 6vw, 88px);
  border-block: 3px solid var(--ink);
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--coral) 42%, var(--blue));
}

.quote-band p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--paper);
}

footer {
  padding: 26px clamp(18px, 6vw, 88px);
  color: #ffffff;
  background: #15151f;
}

footer p {
  margin: 0;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    order: 3;
    width: 100%;
  }

  .hero,
  .split-section,
  .contact-section,
  .tool-app,
  .split-panes {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 360px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  .ticker {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .profile-card {
    min-height: 360px;
    padding: 24px;
    box-shadow: 10px 10px 0 var(--ink), var(--shadow);
  }

  .button {
    width: 100%;
  }
}

/* Neon portfolio home */
.home-neon {
  --ink: #fff7ff;
  --muted: #d7bde9;
  --paper: #100416;
  --panel: rgba(18, 8, 31, 0.86);
  --line: rgba(255, 80, 190, 0.32);
  --pink: #ff3bd4;
  --cyan: #55e9ff;
  --yellow: #ffe66d;
  --green: #9dff7a;
  --blue: #9a66ff;
  --shadow: 0 24px 90px rgba(255, 59, 212, 0.18);
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 59, 212, 0.34), transparent 28%),
    radial-gradient(circle at 78% 6%, rgba(85, 233, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #17051f 0%, #08020f 42%, #020106 100%);
}

.home-neon .ambient-canvas {
  z-index: 0;
  opacity: 0.95;
}

.neon-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 59, 212, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(85, 233, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at var(--mx, 15%) var(--my, 12%), rgba(255, 59, 212, 0.22), transparent 240px);
  background-size: 37px 37px, 37px 37px, auto;
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}

.cursor-glow {
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  z-index: 1;
  width: 300px;
  height: 300px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 212, 0.18), rgba(85, 233, 255, 0.06) 38%, transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.home-neon .site-header {
  border-bottom: 1px solid rgba(255, 59, 212, 0.32);
  background: rgba(7, 2, 15, 0.76);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.home-neon .brand-mark,
.home-neon .theme-toggle {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 18px rgba(255, 59, 212, 0.48), 4px 4px 0 #000;
}

.home-neon .brand-mark {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
}

.home-neon .nav-links {
  color: #f0c9ff;
}

.home-neon .nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 59, 212, 0.9);
}

.home-neon .theme-toggle {
  width: auto;
  min-width: 66px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.home-neon .hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 74px);
}

.home-neon h1 {
  color: #ffffff;
  text-shadow:
    0 0 22px rgba(255, 59, 212, 0.82),
    0 0 58px rgba(85, 233, 255, 0.32);
}

.home-neon .eyebrow,
.home-neon .section-kicker,
.home-neon .project-tag {
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 59, 212, 0.58);
}

.home-neon .hero-text,
.home-neon .section-note,
.home-neon .split-section p:last-child {
  color: var(--muted);
}

.home-neon .button,
.home-neon .project-actions a,
.home-neon .contact-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 59, 212, 0.26), 0 14px 38px rgba(255, 59, 212, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.home-neon .button::after,
.home-neon .project-actions a::after,
.home-neon .contact-card::after {
  position: absolute;
  inset: -40% auto auto -60%;
  width: 60%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: rotate(20deg);
  transition: left 420ms ease;
}

.home-neon .button:hover,
.home-neon .project-card:hover,
.home-neon .contact-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 59, 212, 0.52), 0 22px 60px rgba(0, 0, 0, 0.42);
}

.home-neon .button:hover::after,
.home-neon .project-actions a:hover::after,
.home-neon .contact-card:hover::after {
  left: 120%;
}

.home-neon .button:active,
.home-neon .project-actions a:active,
.home-neon .contact-card:active {
  transform: translateY(-2px) scale(0.98);
}

.home-neon .primary,
.home-neon .project-actions a:first-child {
  background: linear-gradient(135deg, #ff2bc2, #8b5cff);
}

.home-neon .secondary,
.home-neon .project-actions a:not(:first-child) {
  color: #08020f;
  background: linear-gradient(135deg, #ffe66d, #55e9ff);
}

.home-neon .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 30px;
}

.home-neon .hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 59, 212, 0.34);
  border-radius: 8px;
  background: rgba(11, 2, 20, 0.72);
  box-shadow: inset 0 0 20px rgba(255, 59, 212, 0.08);
}

.home-neon .hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.home-neon .hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.home-neon .profile-card {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 84% 24%, rgba(85, 233, 255, 0.72) 0 12%, transparent 13%),
    linear-gradient(145deg, rgba(255, 59, 212, 0.95), rgba(154, 102, 255, 0.9) 48%, rgba(85, 233, 255, 0.82));
  box-shadow: 0 0 32px rgba(255, 59, 212, 0.52), 18px 18px 0 rgba(0, 0, 0, 0.7);
}

.home-neon .profile-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.38;
}

.home-neon .profile-card > * {
  position: relative;
  z-index: 1;
}

.home-neon .avatar {
  border-color: #ffffff;
  background: #08020f;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.62), 8px 8px 0 rgba(0, 0, 0, 0.72);
}

.home-neon .profile-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.home-neon .profile-links a {
  padding: 8px 11px;
  border: 2px solid #08020f;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #08020f;
  font-size: 0.82rem;
  font-weight: 900;
}

.home-neon .profile-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.home-neon .profile-stats span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 2px solid rgba(8, 2, 15, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #08020f;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-neon .profile-stats strong {
  font-size: 1.1rem;
  line-height: 1;
}

.home-neon .ticker {
  border-block-color: rgba(255, 59, 212, 0.76);
  box-shadow: 0 0 36px rgba(255, 59, 212, 0.24);
}

.home-neon .neon-band,
.home-neon .projects-section,
.home-neon .contact-section {
  background:
    linear-gradient(90deg, rgba(255, 59, 212, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(85, 233, 255, 0.06) 1px, transparent 1px),
    rgba(8, 2, 15, 0.88);
  background-size: 32px 32px, 32px 32px, auto;
}

.home-neon .project-card {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(15, 5, 28, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 59, 212, 0.22), 0 18px 54px rgba(0, 0, 0, 0.42);
}

.home-neon .project-card p:last-child {
  color: var(--muted);
}

.home-neon .project-visual {
  border-bottom-color: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.16);
}

.home-neon .skills-section {
  background: #05000a;
}

.home-neon .skill-list span {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 18px rgba(255, 59, 212, 0.22);
}

.home-neon .quote-band {
  border-block-color: rgba(255, 255, 255, 0.54);
  background: linear-gradient(135deg, #ff2bc2, #8b5cff 42%, #55e9ff);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.16);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 5, 28, 0.88);
}

.contact-card strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.home-neon footer {
  background: #05000a;
  border-top: 1px solid rgba(255, 59, 212, 0.28);
}

.ripple-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
  animation: ripple-pop 520ms ease-out forwards;
}

@keyframes ripple-pop {
  from { opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 59, 212, 0.48); }
  to { opacity: 0; box-shadow: 0 0 0 62px rgba(255, 59, 212, 0); }
}

@media (max-width: 760px) {
  .home-neon .hero-stats,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Kich ban AI project: desktop-neon tool surface */
.tool-neon-page {
  --neon-bg: #05000a;
  --neon-panel: #13051f;
  --neon-field: #07020f;
  --neon-text: #fff7ff;
  --neon-muted: #d8b8e9;
  --neon-pink: #ff3bd4;
  --neon-purple: #8b2cff;
  --neon-cyan: #56eaff;
  --neon-lime: #b9ff63;
  margin: 0;
  min-height: 100vh;
  color: var(--neon-text);
  background: var(--neon-bg);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  overflow: hidden;
}

.tool-neon-page * {
  box-sizing: border-box;
}

.neon-app {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  grid-template-rows: 40px calc(100vh - 40px);
  min-height: 100vh;
}

.neon-titlebar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 10px;
  color: var(--neon-text);
  background: #05000a;
}

.neon-title {
  color: var(--neon-pink);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

.neon-titlebar span {
  color: #f6dfff;
  font-size: 0.82rem;
}

.neon-sidebar {
  min-height: 0;
  padding: 10px 14px 22px;
  overflow: auto;
  border-right: 2px solid #bfb8b4;
  background: #12051f;
  scrollbar-color: #d9d2cb #08020d;
}

.neon-main {
  min-width: 0;
  min-height: 0;
  padding: 0 8px 10px 12px;
  overflow: auto;
  background: #05000a;
}

.neon-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--neon-text);
}

.neon-panel h2 {
  margin: 8px 0 4px;
  color: var(--neon-text);
  font-size: 1.08rem;
}

.neon-panel p {
  margin: 0;
  color: var(--neon-text);
  font-size: 0.78rem;
  line-height: 1.45;
}

.neon-panel label {
  display: grid;
  gap: 5px;
  color: var(--neon-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.neon-panel input,
.neon-panel select,
.neon-panel textarea {
  width: 100%;
  min-height: 20px;
  border: 2px solid #f4e8ff;
  border-radius: 0;
  padding: 3px 5px;
  color: #ffffff;
  background: #13051f;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  outline: none;
}

.neon-panel textarea {
  resize: vertical;
  line-height: 1.35;
}

.neon-server-status {
  display: flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 7px 9px;
  color: #ffd38e;
  background: rgba(255, 197, 110, .08);
  font-size: .75rem;
  line-height: 1.35;
}

.neon-server-status.is-online {
  border-color: rgba(185, 255, 99, .52);
  color: var(--neon-lime);
  background: rgba(185, 255, 99, .08);
}

.neon-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px !important;
}

.neon-check input {
  width: auto;
  min-height: auto;
}

.neon-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.neon-tabs {
  display: flex;
  align-items: end;
  gap: 0;
  min-width: max-content;
  padding-top: 0;
  border-bottom: 2px solid #cfc7d2;
}

.neon-tabs .mini-tab {
  min-height: 36px;
  border: 2px solid #cfc7d2;
  border-bottom: 0;
  border-radius: 0;
  padding: 0 16px;
  color: #ffffff;
  background: #13051f;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: none;
}

.neon-tabs .mini-tab.active {
  color: #ffffff;
  background: #1b082e;
}

.mini-panel {
  display: none;
}

.mini-panel.active {
  display: block;
}

.neon-workflows {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 10px;
  padding: 34px 4px 16px;
}

.neon-workflows.single {
  grid-template-columns: minmax(280px, 560px);
}

.neon-workflow {
  min-height: 196px;
  padding: 14px 14px 12px;
  border: 2px solid var(--neon-purple);
  background: #05000a;
}

.neon-workflow h3 {
  margin: -32px 0 12px;
  color: var(--neon-pink);
  font-size: 0.95rem;
}

.neon-grid-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 10px;
}

.neon-chat-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(220px, 1fr) auto auto;
  gap: 10px;
}

.neon-chat-row input,
.neon-chat-row select,
.neon-inline-textarea {
  width: 100%;
  border: 2px solid var(--neon-cyan);
  border-radius: 0;
  padding: 8px 10px;
  color: #ffffff;
  background: #07020f;
  font: inherit;
  font-size: 0.82rem;
  outline: none;
}

.neon-inline-textarea {
  min-height: 92px;
  margin-bottom: 10px;
  resize: vertical;
}

.neon-btn {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--neon-purple);
  border-radius: 0;
  padding: 0 12px;
  color: #ffffff;
  background: #10051f;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
}

.neon-btn.cyan {
  border-color: var(--neon-cyan);
  background: #082338;
}

.neon-btn.lime {
  border-color: var(--neon-lime);
  background: #213d13;
}

.neon-btn.magenta {
  border-color: var(--neon-pink);
  background: #720f60;
}

.neon-btn.wide {
  width: 100%;
}

.neon-btn.file input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.neon-editors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: calc(100vh - 314px);
}

.neon-editors.triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 12px;
}

.neon-editors section {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 0;
}

.neon-editors header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
}

.neon-editors h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.96rem;
}

.neon-editors span {
  color: #ffffff;
  font-size: 0.8rem;
}

.neon-editors textarea {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-right: 18px solid #d7d4cf;
  border-radius: 0;
  padding: 10px;
  color: #ffffff;
  background: #07020f;
  font: 500 0.88rem/1.55 Consolas, "Courier New", monospace;
  resize: none;
  outline: none;
  scrollbar-color: #d9d2cb #07020f;
}

.neon-report {
  min-height: calc(100vh - 180px);
  margin: 12px 4px;
  padding: 14px;
  overflow: auto;
  border: 2px solid var(--neon-purple);
  color: #ffffff;
  background: #07020f;
  white-space: pre-wrap;
  font: 500 0.9rem/1.6 Consolas, "Courier New", monospace;
}

.neon-training-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 4px;
}

.neon-training-actions .neon-btn {
  min-width: 150px;
}

.neon-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  padding: 18px 4px 0;
}

.neon-metrics div {
  padding: 14px;
  border: 2px solid var(--neon-purple);
  color: #ffffff;
  background: #10051f;
}

.neon-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--neon-muted);
  font-weight: 900;
}

.neon-metrics strong {
  font-size: 2.4rem;
}

@media (max-width: 1100px) {
  .tool-neon-page {
    overflow: auto;
  }

  .neon-app {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    overflow: hidden;
  }

  .neon-sidebar {
    width: 100%;
    min-width: 0;
    max-height: none;
    border-right: 0;
    border-bottom: 2px solid #bfb8b4;
  }

  .neon-tabs {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .neon-workflows,
  .neon-editors,
  .neon-editors.triple,
  .neon-chat-row {
    grid-template-columns: 1fr;
  }

  .neon-main {
    overflow: visible;
  }
}

/* Home neon refresh */
.home-neon {
  --ink: #fff6ff;
  --muted: #dfb8ef;
  --paper: rgba(19, 5, 31, .86);
  --panel: rgba(16, 5, 28, .88);
  --line: rgba(255, 80, 210, .28);
  --pink: #ff3bd4;
  --yellow: #ffef7a;
  --green: #b9ff63;
  --cyan: #56eaff;
  --blue: #8b5cff;
  --shadow: 0 30px 90px rgba(255, 59, 212, .18);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 59, 212, .26), transparent 24%),
    radial-gradient(circle at 84% 2%, rgba(86, 234, 255, .18), transparent 26%),
    linear-gradient(90deg, rgba(255, 59, 212, .15) 1px, transparent 1px),
    linear-gradient(180deg, rgba(86, 234, 255, .10) 1px, transparent 1px),
    linear-gradient(145deg, #09020f 0%, #18051f 48%, #031924 100%);
  background-size: auto, auto, 55px 55px, 55px 55px, auto;
}

.home-neon .neon-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 18%) var(--my, 18%), rgba(255, 59, 212, .20), transparent 220px),
    radial-gradient(circle at 12% 92%, rgba(255, 239, 122, .14), transparent 230px),
    radial-gradient(circle at 88% 76%, rgba(86, 234, 255, .16), transparent 260px);
}

.home-neon .cursor-glow {
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 28%);
  z-index: 6;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 59, 212, .24), rgba(86, 234, 255, .10) 42%, transparent 72%);
  mix-blend-mode: screen;
  filter: blur(6px);
  transform: translate(-50%, -50%);
}

.home-neon .ambient-canvas { z-index: -1; opacity: .9; }
.home-neon .scroll-meter { height: 6px; box-shadow: 0 0 18px rgba(255, 59, 212, .8); }

.home-neon .neon-header {
  border-bottom: 1px solid rgba(255, 59, 212, .32);
  background: rgba(7, 1, 12, .72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.home-neon .brand { color: #fff; text-shadow: 0 0 18px rgba(255, 59, 212, .7); }
.home-neon .brand-mark {
  border-color: rgba(255,255,255,.78);
  color: #12051f;
  background: conic-gradient(from 120deg, var(--pink), var(--yellow), var(--cyan), var(--pink));
  box-shadow: 0 0 28px rgba(255, 59, 212, .65), 5px 5px 0 #05000a;
}

.home-neon .nav-links a {
  color: #f9dfff;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}
.home-neon .nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 59, 212, .9);
  transform: translateY(-2px);
}

.home-neon .theme-toggle {
  width: auto;
  min-width: 72px;
  padding: 0 14px;
  border-color: var(--pink);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 59, 212, .18);
  box-shadow: 0 0 22px rgba(255, 59, 212, .45), 4px 4px 0 #05000a;
}

.home-neon.neon-boost {
  filter: saturate(1.28) contrast(1.08);
}

.home-neon.neon-soft {
  filter: saturate(.82) brightness(.92);
}

.home-neon .neon-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 430px);
  gap: clamp(28px, 4vw, 56px);
  min-height: calc(100vh - 78px);
  padding-top: clamp(62px, 8vw, 112px);
}

.home-neon .visitor-pulse {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
  margin: clamp(16px, 4vw, 36px) clamp(18px, 6vw, 88px) 0;
  padding: clamp(18px, 4vw, 26px);
  border: 2px solid rgba(255,255,255,.70);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,59,212,.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(86,234,255,.10) 1px, transparent 1px),
    rgba(10, 2, 18, .72);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 0 42px rgba(255,59,212,.22), 10px 10px 0 #05000a;
}

.home-neon .visitor-copy h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.home-neon .visitor-form {
  display: grid;
  gap: 13px;
}

.home-neon .like-button {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,59,212,.72), rgba(139,92,255,.68));
  box-shadow: 0 0 28px rgba(255,59,212,.36), 6px 6px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.home-neon .like-button span {
  font-size: 1.25rem;
}

.home-neon .like-button.is-liked {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .rating-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.home-neon .rating-control button {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.70);
  border-radius: 8px;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  transition: transform .16s ease, color .16s ease, box-shadow .16s ease;
}

.home-neon .rating-control button:hover,
.home-neon .rating-control button.is-active {
  color: #ffef7a;
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(255,239,122,.34), 4px 4px 0 #05000a;
}

.home-neon .rating-control span {
  color: #ead0f7;
  font-weight: 900;
}

.home-neon .vote-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-neon .vote-board span {
  display: grid;
  gap: 3px;
  min-height: 66px;
  align-content: center;
  border: 2px solid rgba(255,255,255,.66);
  border-radius: 8px;
  color: #ead0f7;
  background: rgba(255,59,212,.12);
  box-shadow: 4px 4px 0 #05000a;
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.home-neon .vote-board strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,59,212,.66);
}

.home-neon .rating-bars {
  display: grid;
  gap: 8px;
}

.home-neon .rating-bars div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 9px;
  align-items: center;
  color: #f8e7ff;
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .rating-bars i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}

.home-neon .rating-bars i::before {
  position: absolute;
  inset: 0;
  width: var(--bar, 0%);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #ffef7a, #ff3bd4, #56eaff);
  box-shadow: 0 0 16px rgba(255,59,212,.42);
}

.home-neon .visitor-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-neon .visitor-fields input {
  min-height: 46px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: rgba(5, 0, 10, .72);
  font: inherit;
  outline: none;
}

.home-neon .visitor-fields input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(86,234,255,.26);
}
.home-neon .eyebrow,
.home-neon .section-kicker,
.home-neon .project-tag {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(86, 234, 255, .55);
}
.home-neon h1 {
  max-width: 680px;
  font-size: clamp(4.1rem, 7.6vw, 6.45rem);
  line-height: .9;
  color: #fff;
  text-shadow: 0 0 26px rgba(255, 59, 212, .75), 8px 8px 0 rgba(86, 234, 255, .16);
  animation: neon-title-flicker 4.8s ease-in-out infinite;
}
.home-neon h2,
.home-neon h3 { color: #fff; }
.home-neon .hero-text,
.home-neon .section-note,
.home-neon .split-section p:last-child { color: #ead0f7; }

.home-neon .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.home-neon .hero-stats div {
  padding: 14px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  background: rgba(255, 59, 212, .13);
  box-shadow: 0 0 20px rgba(255, 59, 212, .20), 5px 5px 0 #05000a;
}

.home-neon .hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.home-neon .hero-stats span {
  display: block;
  margin-top: 5px;
  color: #ead0f7;
  font-size: .82rem;
  font-weight: 800;
}

.home-neon .button,
.home-neon .project-actions a,
.home-neon .contact-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.74);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
}
.home-neon .button::after,
.home-neon .project-actions a::after,
.home-neon .contact-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,.34) 50%, transparent 65% 100%);
  transform: translateX(-140%);
  transition: transform .42s ease;
}
.home-neon .button:hover::after,
.home-neon .project-actions a:hover::after,
.home-neon .contact-card:hover::after { transform: translateX(140%); }
.home-neon .button:hover,
.home-neon .project-actions a:hover,
.home-neon .contact-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 0 32px rgba(255, 59, 212, .46), 0 0 70px rgba(86, 234, 255, .18), 7px 7px 0 #05000a;
  border-color: var(--cyan);
}
.home-neon .button:active,
.home-neon .project-actions a:active,
.home-neon .contact-card:active { transform: translateY(1px) scale(.99); }
.home-neon .primary { background: linear-gradient(135deg, #ff3bd4, #8b5cff); }
.home-neon .secondary { color: #12051f; background: linear-gradient(135deg, #ffef7a, #56eaff); }
.home-neon .ghost { color: #fff; background: rgba(255,255,255,.08); }

.home-neon .neon-profile-card {
  width: min(100%, 410px);
  min-height: 410px;
  border-color: rgba(255,255,255,.76);
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.90) 0 7%, transparent 8%),
    radial-gradient(circle at 82% 22%, rgba(86,234,255,.75), transparent 20%),
    linear-gradient(145deg, rgba(255,59,212,.95), rgba(139,92,255,.90) 50%, rgba(86,234,255,.80));
  box-shadow: 0 0 55px rgba(255, 59, 212, .35), 18px 18px 0 #05000a;
  transform: rotate(1deg);
}
.home-neon .neon-profile-card:hover { transform: rotate(0deg) translateY(-6px); }
.home-neon .neon-profile-card::after { background: rgba(255,255,255,.88); box-shadow: 0 0 30px rgba(86,234,255,.45); }
.home-neon .neon-avatar {
  color: #12051f;
  background: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,.65), 8px 8px 0 #05000a;
}
.home-neon .profile-label { color: #12051f; }
.home-neon .profile-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.home-neon .profile-stats span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(5,0,10,.32);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  text-align: center;
}
.home-neon .profile-stats strong { font-size: 1.25rem; }

.home-neon .neon-ticker { border-color: rgba(255,255,255,.72); box-shadow: 0 0 35px rgba(255,59,212,.22); }
.home-neon .neon-about,
.home-neon .neon-projects,
.home-neon .neon-platform,
.home-neon .neon-contact {
  background: rgba(10, 2, 18, .70);
  border-block: 1px solid rgba(255, 59, 212, .24);
}
.home-neon .about-stack { display: grid; gap: 18px; }
.home-neon .mini-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.home-neon .mini-badges span,
.home-neon .skill-list span {
  border: 2px solid rgba(255,255,255,.74);
  color: #fff;
  background: rgba(255, 59, 212, .18);
  box-shadow: 0 0 18px rgba(255,59,212,.22);
}

.home-neon .project-card {
  border-color: rgba(255,255,255,.78);
  background: rgba(16,5,28,.86);
  box-shadow: 0 0 35px rgba(255, 59, 212, .20), 9px 9px 0 #05000a;
  transform-style: preserve-3d;
}
.home-neon .project-card:hover { transform: translateY(-10px) rotateX(2deg); }
.home-neon .project-card p { color: #ead0f7; }
.home-neon .project-visual { border-color: rgba(255,255,255,.78); }
.home-neon .project-visual span { border-color: rgba(5,0,10,.82); text-shadow: 0 0 16px rgba(255,255,255,.55); }
.home-neon .project-actions a:first-child { background: linear-gradient(135deg, #ff3bd4, #8b5cff); }
.home-neon .project-actions a:not(:first-child) { background: linear-gradient(135deg, #ffef7a, #56eaff); }

.home-neon .platform-section {
  position: relative;
  z-index: 2;
}

.home-neon .platform-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
}

.home-neon .module-search {
  display: grid;
  flex: 1 1 280px;
  gap: 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .module-search input {
  min-height: 44px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(5,0,10,.72);
  box-shadow: inset 0 0 20px rgba(255,59,212,.12), 4px 4px 0 #05000a;
  font: inherit;
  outline: none;
}

.home-neon .module-search input:focus {
  border-color: #56eaff;
  box-shadow: 0 0 24px rgba(86,234,255,.28), inset 0 0 20px rgba(255,59,212,.16), 4px 4px 0 #05000a;
}

.home-neon .platform-filter {
  min-height: 42px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255,59,212,.12);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.home-neon .platform-filter:hover,
.home-neon .platform-filter.active {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 0 0 26px rgba(255,59,212,.32), 4px 4px 0 #05000a;
}

.home-neon .platform-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.home-neon .platform-overview span {
  display: grid;
  gap: 4px;
  min-height: 82px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  color: #f4d9ff;
  background: rgba(5,0,10,.58);
  box-shadow: 6px 6px 0 #05000a;
  font-weight: 900;
}

.home-neon .platform-overview strong {
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255,59,212,.7);
}

.home-neon .platform-livebar {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: clamp(16px, 3vw, 22px);
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(86,234,255,.22), transparent 220px),
    radial-gradient(circle at 82% 20%, rgba(255,59,212,.22), transparent 260px),
    rgba(5,0,10,.72);
  box-shadow: 0 0 34px rgba(255,59,212,.2), 8px 8px 0 #05000a;
}

.home-neon .live-clock {
  display: grid;
  gap: 4px;
}

.home-neon .live-clock strong {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: 0 0 30px rgba(86,234,255,.58), 0 0 54px rgba(255,59,212,.28);
}

.home-neon .live-clock span {
  color: #ead0f7;
  font-weight: 900;
}

.home-neon .google-live-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.home-neon .google-live-search label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.home-neon .google-live-search input {
  width: 100%;
  min-height: 46px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: rgba(5,0,10,.72);
  box-shadow: inset 0 0 18px rgba(255,59,212,.12);
  font: inherit;
  outline: none;
}

.home-neon .google-live-search input:focus {
  border-color: #56eaff;
  box-shadow: 0 0 24px rgba(86,234,255,.28), inset 0 0 18px rgba(255,59,212,.16);
}

.home-neon .google-live-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.home-neon .google-live-links a {
  border: 2px solid rgba(255,255,255,.66);
  border-radius: 999px;
  padding: 11px 13px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 4px 4px 0 #05000a;
  font-size: .82rem;
  font-weight: 1000;
  text-decoration: none;
}

.home-neon .module-detail {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: clamp(16px, 3vw, 24px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 8%, rgba(86,234,255,.18), transparent 260px),
    radial-gradient(circle at 88% 12%, rgba(255,59,212,.18), transparent 260px),
    rgba(5,0,10,.76);
  box-shadow: 0 0 40px rgba(86,234,255,.16), 9px 9px 0 #05000a;
}

.home-neon .module-detail h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.home-neon .module-detail p {
  margin: 0;
  color: #ead0f7;
  line-height: 1.65;
}

.home-neon .module-detail-meta,
.home-neon .module-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-neon .module-detail-meta span,
.home-neon .module-detail-features span,
.home-neon .module-fav-toggle {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: .8rem;
  font-weight: 900;
}

.home-neon .module-fav-toggle {
  border: 2px solid rgba(255,255,255,.72);
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
}

.home-neon .module-mini-app {
  display: grid;
  gap: 12px;
}

.home-neon .module-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-neon .module-tool-button,
.home-neon .module-open-button {
  min-height: 44px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-neon .module-tool-button span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 7px;
  place-items: center;
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .module-tool-button:hover,
.home-neon .module-open-button:hover {
  transform: translateY(-3px);
  border-color: #56eaff;
  background: linear-gradient(135deg, rgba(255,59,212,.24), rgba(86,234,255,.15));
  box-shadow: 0 0 24px rgba(255,59,212,.22), 4px 4px 0 #05000a;
}

.home-neon .module-open-button {
  width: 100%;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  text-align: center;
}

.home-neon .module-mini-app label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.home-neon .module-card.active {
  border-color: var(--module-accent, #ff3bd4);
  box-shadow: 0 0 34px color-mix(in srgb, var(--module-accent, #ff3bd4) 45%, transparent), 7px 7px 0 #05000a;
}

.home-neon .module-card-fav {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 3px 3px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.home-neon .module-history {
  display: grid;
  gap: 10px;
}

.home-neon .module-history article,
.home-neon .module-history p {
  margin: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  padding: 11px 12px;
  color: #ead0f7;
  background: rgba(5,0,10,.48);
}

.home-neon .module-history article strong,
.home-neon .module-history article span {
  display: block;
}

.home-neon .module-history article strong {
  color: #fff;
}

.home-neon .module-history article span {
  margin: 4px 0;
  color: #56eaff;
  font-size: .78rem;
  font-weight: 900;
}

.home-neon .platform-console {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  padding: clamp(16px, 3vw, 24px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 6%, rgba(255,79,216,.24), transparent 260px),
    radial-gradient(circle at 88% 20%, rgba(0,229,255,.16), transparent 260px),
    rgba(5,0,10,.76);
  box-shadow: 0 0 40px rgba(255,59,212,.22), 9px 9px 0 #05000a;
}

.home-neon .platform-console-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.home-neon .platform-console h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.home-neon .platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-neon .platform-tabs button {
  min-height: 40px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.home-neon .platform-tabs button:hover,
.home-neon .platform-tabs button.active {
  color: #12051f;
  background: linear-gradient(135deg, #ff4fd8, #00e5ff);
}

.home-neon .platform-workspace {
  display: none;
  gap: 14px;
}

.home-neon .platform-workspace.active {
  display: grid;
}

.home-neon .workspace-controls {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 12px;
}

.home-neon .workspace-controls.three-cols {
  grid-template-columns: 1.1fr .75fr 1.1fr;
}

.home-neon .workspace-controls label,
.home-neon .platform-workspace label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.home-neon .platform-workspace input,
.home-neon .platform-workspace select,
.home-neon .platform-workspace textarea,
.home-neon .module-mini-app textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 11px 13px;
  color: #fff;
  background: rgba(5,0,10,.72);
  box-shadow: inset 0 0 18px rgba(255,59,212,.12);
  font: inherit;
  outline: none;
}

.home-neon .platform-workspace textarea,
.home-neon .module-mini-app textarea {
  resize: vertical;
  line-height: 1.55;
}

.home-neon .platform-workspace input:focus,
.home-neon .platform-workspace select:focus,
.home-neon .platform-workspace textarea:focus,
.home-neon .module-mini-app textarea:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 24px rgba(0,229,255,.26), inset 0 0 18px rgba(255,59,212,.14);
}

.home-neon .workspace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-neon .workspace-output {
  min-height: 180px;
  max-height: 420px;
  margin: 0;
  overflow: auto;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 8px;
  padding: 16px;
  color: #f8e9ff;
  background:
    linear-gradient(90deg, rgba(255,59,212,.08) 1px, transparent 1px),
    rgba(2,0,8,.78);
  background-size: 28px 28px;
  font: 800 .9rem/1.65 "Be Vietnam Pro", Arial, sans-serif;
  white-space: pre-wrap;
}

.home-neon .module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-neon .module-grid.module-flow {
  grid-template-columns: 1fr;
  gap: 18px;
}

.home-neon .module-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 270px;
  padding: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--module-accent, #ff3bd4) 34%, transparent), transparent 120px),
    linear-gradient(145deg, rgba(255,59,212,.12), rgba(86,234,255,.08)),
    rgba(5,0,10,.74);
  box-shadow: 0 0 28px rgba(255,59,212,.18), 7px 7px 0 #05000a;
}

.home-neon .module-row {
  min-height: 0;
  padding: clamp(16px, 3vw, 24px);
}

.home-neon .module-row:hover {
  transform: translateY(-4px);
}

.home-neon .module-row-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.home-neon .module-row-head h3 {
  margin: 4px 0 8px;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
}

.home-neon .module-row-body {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1.08fr);
  gap: 16px;
  align-items: start;
}

.home-neon .module-function-panel,
.home-neon .module-inline-app {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5,0,10,.42);
}

.home-neon .module-function-panel {
  align-content: start;
  min-height: 0;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--module-accent, #ff3bd4) 24%, transparent), transparent 210px),
    rgba(5,0,10,.48);
}

.home-neon .module-quick-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.06);
}

.home-neon .module-quick-head .section-kicker {
  margin-bottom: 4px;
}

.home-neon .module-quick-head strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.home-neon .module-quick-head > span {
  border-radius: 999px;
  padding: 8px 10px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 3px 3px 0 #05000a;
  font-size: .76rem;
  font-weight: 1000;
}

.home-neon .module-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-neon .module-quick-stats span {
  display: grid;
  gap: 4px;
  min-height: 70px;
  align-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: 10px;
  color: #ead0f7;
  background: rgba(255,255,255,.055);
  font-size: .76rem;
  font-weight: 900;
}

.home-neon .module-quick-stats b {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--module-accent, #ff3bd4) 66%, transparent);
}

.home-neon .module-progress-card,
.home-neon .module-note-card,
.home-neon .module-activity-feed {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  padding: 12px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--module-accent, #ff3bd4) 18%, transparent), transparent 160px),
    rgba(255,255,255,.055);
}

.home-neon .module-progress-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-neon .module-progress-card strong,
.home-neon .module-note-card label,
.home-neon .module-activity-feed strong {
  color: #fff;
  font-size: .86rem;
  font-weight: 1000;
}

.home-neon .module-progress-card span {
  color: #56eaff;
  font-size: .78rem;
  font-weight: 900;
}

.home-neon .module-progress-card i {
  display: block;
  height: 11px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(2,0,8,.62);
}

.home-neon .module-progress-card i::before {
  display: block;
  width: var(--progress, 4%);
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #ff3bd4, #ffef7a, #56eaff);
  box-shadow: 0 0 18px color-mix(in srgb, var(--module-accent, #ff3bd4) 52%, transparent);
  transition: width .22s ease;
}

.home-neon .module-features.full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-content: start;
  max-height: 220px;
  overflow: auto;
  padding-right: 3px;
}

.home-neon .module-feature-chip {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 1000;
  text-align: left;
}

.home-neon .module-feature-chip span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  font-size: .68rem;
}

.home-neon .module-feature-chip:hover {
  color: #12051f;
  border-color: #56eaff;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .module-playbook {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(86,234,255,.30);
  border-radius: 8px;
  padding: 12px;
  background: rgba(86,234,255,.07);
}

.home-neon .module-playbook strong {
  color: #56eaff;
  font-size: .86rem;
}

.home-neon .module-playbook label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #f4d9ff;
  font-size: .82rem;
  font-weight: 850;
}

.home-neon .module-playbook input {
  accent-color: #ff3bd4;
}

.home-neon .module-note-card label {
  display: grid;
  gap: 8px;
}

.home-neon .module-note-card textarea {
  width: 100%;
  min-height: 86px;
  border: 2px solid rgba(255,255,255,.54);
  border-radius: 8px;
  padding: 10px 11px;
  color: #fff;
  background: rgba(2,0,8,.68);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
  outline: none;
}

.home-neon .module-note-card textarea:focus {
  border-color: #56eaff;
  box-shadow: 0 0 20px rgba(86,234,255,.22);
}

.home-neon .module-note-card button {
  min-height: 36px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 3px 3px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 1000;
}

.home-neon .module-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-neon .module-quick-actions button {
  min-height: 38px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 3px 3px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 1000;
}

.home-neon .module-quick-actions button:hover {
  filter: brightness(1.08) saturate(1.2);
  transform: translateY(-2px);
}

.home-neon .module-activity-feed {
  align-content: start;
  min-height: 128px;
}

.home-neon .module-activity-feed p {
  margin: 0;
  border-left: 3px solid color-mix(in srgb, var(--module-accent, #ff3bd4) 70%, #56eaff);
  border-radius: 6px;
  padding: 6px 8px;
  color: #ead0f7;
  background: rgba(2,0,8,.38);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.4;
}

.home-neon .module-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-neon .module-row-meta span {
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ead0f7;
  background: rgba(255,255,255,.07);
  font-size: .75rem;
  font-weight: 1000;
}

.home-neon .module-row-meta b {
  color: #56eaff;
}

.home-neon .module-inline-app label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.home-neon .module-inline-app textarea {
  width: 100%;
  min-height: 108px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 8px;
  padding: 11px 13px;
  color: #fff;
  background: rgba(5,0,10,.72);
  box-shadow: inset 0 0 18px rgba(255,59,212,.12);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.home-neon .module-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-neon .module-inline-output {
  min-height: 170px;
  max-height: 320px;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(86,234,255,.32);
  border-radius: 8px;
  padding: 13px;
  color: #f8e9ff;
  background:
    linear-gradient(90deg, rgba(86,234,255,.07) 1px, transparent 1px),
    rgba(2,0,8,.72);
  background-size: 24px 24px;
  font: 800 .82rem/1.6 "Be Vietnam Pro", system-ui, sans-serif;
  white-space: pre-wrap;
}

.home-neon .command-center-app {
  display: grid;
  gap: 14px;
  margin-bottom: 4px;
}

.home-neon .command-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255,59,212,.34), transparent 210px),
    radial-gradient(circle at 88% 20%, rgba(86,234,255,.24), transparent 240px),
    rgba(2,0,8,.72);
  box-shadow: inset 0 0 30px rgba(255,59,212,.08);
}

.home-neon .command-hero h4 {
  margin: 4px 0 6px;
  color: #fff;
  font-size: clamp(1.25rem, 2.7vw, 2.35rem);
}

.home-neon .command-hero span {
  color: #ead0f7;
  font-weight: 800;
}

.home-neon .command-clock {
  display: grid;
  min-width: 210px;
  justify-items: end;
}

.home-neon .command-clock strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(86,234,255,.65), 0 0 58px rgba(255,59,212,.28);
}

.home-neon .command-clock span {
  color: #56eaff;
  font-size: .82rem;
  font-weight: 1000;
}

.home-neon .command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-neon .command-widget {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 150px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 13px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(5,0,10,.64);
  box-shadow: 4px 4px 0 #05000a;
}

.home-neon .command-widget header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.home-neon .command-widget header strong {
  font-size: .98rem;
}

.home-neon .command-widget header button,
.home-neon .command-mini-links a,
.home-neon .command-todo-list button {
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  padding: 7px 9px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
  font-weight: 1000;
  text-decoration: none;
}

.home-neon .command-widget input,
.home-neon .command-widget textarea {
  width: 100%;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 10px 11px;
  color: #fff;
  background: rgba(2,0,8,.7);
  font: inherit;
  outline: none;
}

.home-neon .command-widget input:focus,
.home-neon .command-widget textarea:focus {
  border-color: #56eaff;
  box-shadow: 0 0 20px rgba(86,234,255,.22);
}

.home-neon .weather-readout,
.home-neon .server-readout,
.home-neon .command-activity {
  display: grid;
  gap: 6px;
  color: #ead0f7;
  font-weight: 800;
}

.home-neon .weather-readout strong,
.home-neon .server-readout strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.home-neon .weather-readout em {
  color: #56eaff;
  font-style: normal;
}

.home-neon .command-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-neon .notes-widget,
.home-neon .todo-widget {
  min-height: 230px;
}

.home-neon .command-todo-list {
  display: grid;
  gap: 8px;
}

.home-neon .command-todo-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255,255,255,.05);
}

.home-neon .command-todo-list input:checked + span {
  color: #95ffba;
  text-decoration: line-through;
}

.home-neon .command-activity p {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 6px;
}

.home-neon .module-studio-app {
  display: grid;
  gap: 14px;
}

.home-neon .studio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.58);
  border-radius: 8px;
  padding: 15px;
  background:
    radial-gradient(circle at 12% 15%, color-mix(in srgb, var(--module-accent, #ff3bd4) 36%, transparent), transparent 220px),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(2,0,8,.72);
}

.home-neon .studio-hero h4 {
  margin: 4px 0 6px;
  color: #fff;
  font-size: clamp(1.16rem, 2.4vw, 2rem);
}

.home-neon .studio-hero span {
  color: #ead0f7;
  font-weight: 800;
}

.home-neon .studio-score {
  display: grid;
  min-width: 108px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5,0,10,.58);
}

.home-neon .studio-score strong {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 0 24px color-mix(in srgb, var(--module-accent, #ff3bd4) 64%, transparent);
}

.home-neon .studio-score span {
  color: #56eaff;
  font-size: .76rem;
  font-weight: 1000;
}

.home-neon .studio-grid {
  display: grid;
  grid-template-columns: .7fr 1.2fr 1fr;
  gap: 12px;
}

.home-neon .studio-panel {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  padding: 13px;
  color: #fff;
  background: rgba(5,0,10,.52);
  box-shadow: 4px 4px 0 #05000a;
}

.home-neon .studio-panel header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.home-neon .studio-panel header strong {
  font-size: .95rem;
}

.home-neon .studio-panel button,
.home-neon .studio-actions button {
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  padding: 7px 9px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
  font-weight: 1000;
}

.home-neon .studio-metrics {
  grid-template-columns: 1fr;
}

.home-neon .studio-metrics span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 11px;
  color: #ead0f7;
  background: rgba(255,255,255,.05);
  font-size: .78rem;
  font-weight: 1000;
}

.home-neon .studio-metrics strong {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.home-neon .studio-panel textarea {
  width: 100%;
  min-height: 116px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 10px 11px;
  color: #fff;
  background: rgba(2,0,8,.7);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}

.home-neon .studio-panel textarea:focus {
  border-color: #56eaff;
  box-shadow: 0 0 20px rgba(86,234,255,.22);
}

.home-neon .studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-neon .studio-preview {
  display: grid;
  gap: 8px;
}

.home-neon .studio-preview p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 8px;
  color: #ead0f7;
  background: rgba(255,255,255,.05);
  font-size: .82rem;
  font-weight: 800;
}

.home-neon .studio-preview b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  font-size: .7rem;
}

.home-neon .module-card:hover {
  transform: translateY(-7px);
  border-color: var(--module-accent, #ff3bd4);
  box-shadow: 0 0 30px color-mix(in srgb, var(--module-accent, #ff3bd4) 48%, transparent), 7px 7px 0 #05000a;
}

.home-neon .module-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  color: #12051f;
  background: linear-gradient(135deg, #fff, var(--module-accent, #ff3bd4));
  box-shadow: 4px 4px 0 #05000a;
  font-weight: 900;
}

.home-neon .module-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.home-neon .module-card p:not(.project-tag) {
  margin: 0;
  color: #ead0f7;
  font-size: .88rem;
  line-height: 1.55;
}

.home-neon .module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.home-neon .module-features span {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: .74rem;
  font-weight: 900;
}

.home-neon .module-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #f4d9ff;
  font-size: .78rem;
  font-weight: 900;
}

.home-neon .module-card footer strong {
  border-radius: 999px;
  padding: 6px 9px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .neon-skills { background: #05000a; }
.home-neon .neon-quote { background: linear-gradient(135deg, #ff3bd4, #8b5cff 45%, #56eaff); }
.home-neon .neon-quote p { text-shadow: 0 0 24px rgba(255,255,255,.42); }

.home-neon .chat-section {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 59, 212, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(86, 234, 255, 0.08) 1px, transparent 1px),
    rgba(7, 1, 15, .82);
  background-size: 46px 46px;
}

.home-neon .chat-app {
  display: grid;
  grid-template-columns: 74px minmax(260px, 320px) minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,59,212,.18), transparent 260px),
    radial-gradient(circle at 90% 0%, rgba(86,234,255,.14), transparent 280px),
    rgba(5,0,10,.76);
  box-shadow: 0 0 42px rgba(255,59,212,.20), 10px 10px 0 #05000a;
  backdrop-filter: blur(18px);
}

.home-neon .chat-server-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 16px 10px;
  border-right: 2px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.34);
}

.home-neon .server-pill {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 16px;
  color: #12051f;
  background: linear-gradient(135deg, #ff3bd4, #56eaff);
  box-shadow: 0 0 24px rgba(255,59,212,.28), 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  transition: border-radius .18s ease, transform .18s ease, filter .18s ease;
}

.home-neon .server-pill:hover,
.home-neon .server-pill.active {
  border-radius: 8px;
  transform: translateY(-2px);
  filter: saturate(1.35) brightness(1.08);
}

.home-neon .chat-sidebar {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-right: 2px solid rgba(255,255,255,.24);
  background: rgba(5,0,10,.48);
}

.home-neon .chat-profile,
.home-neon .chat-users {
  display: grid;
  gap: 11px;
}

.home-neon .chat-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 18px;
  color: #12051f;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 26px rgba(255,59,212,.28), 5px 5px 0 #05000a;
  font-weight: 900;
}

.home-neon .chat-avatar.small {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  font-size: .82rem;
}

.home-neon .chat-profile label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .chat-profile input,
.home-neon .chat-profile select,
.home-neon .chat-header-tools input,
.home-neon .chat-extra-row input,
.home-neon .chat-composer textarea {
  width: 100%;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  padding: 11px 12px;
  color: #fff;
  background: rgba(5,0,10,.72);
  font: inherit;
  outline: none;
}

.home-neon .chat-profile input:focus,
.home-neon .chat-profile select:focus,
.home-neon .chat-header-tools input:focus,
.home-neon .chat-extra-row input:focus,
.home-neon .chat-composer textarea:focus {
  border-color: #56eaff;
  box-shadow: 0 0 22px rgba(86,234,255,.24);
}

.home-neon .chat-room-panel {
  display: grid;
  gap: 10px;
}

.home-neon .chat-room-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-neon .chat-room-heading h3 {
  margin: 0;
  color: #fff;
  font-size: .98rem;
}

.home-neon .room-add-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.64);
  border-radius: 8px;
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  box-shadow: 3px 3px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
}

.home-neon .chat-room-create {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(86,234,255,.42);
  border-radius: 8px;
  background: rgba(86,234,255,.08);
}

.home-neon .chat-room-create[hidden] {
  display: none;
}

.home-neon .chat-room-create input {
  width: 100%;
  min-height: 38px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
  background: rgba(2,0,8,.72);
  font: inherit;
  outline: none;
}

.home-neon .chat-rooms {
  display: grid;
  gap: 8px;
  max-height: 300px;
  overflow: auto;
  padding-right: 3px;
}

.home-neon .chat-room {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255,255,255,.07);
  box-shadow: 4px 4px 0 #05000a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  position: relative;
  isolation: isolate;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

.home-neon .chat-room::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: rgba(255,255,255,.32);
  box-shadow: 0 0 12px rgba(255,255,255,.18);
}

.home-neon .chat-room span:not(:empty) {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #12051f;
  background: #ffef7a;
  font-size: .72rem;
  box-shadow: 0 0 16px rgba(255,239,122,.44);
}

.home-neon .chat-room:hover,
.home-neon .chat-room.active {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
  border-color: rgba(255,255,255,.9);
  transform: translateX(4px);
}

.home-neon .chat-room.active::before {
  background: #ff3bd4;
  box-shadow: 0 0 18px rgba(255,59,212,.9);
}

.home-neon .chat-room .room-remove {
  margin-left: auto;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  opacity: .72;
}

.home-neon .chat-room .room-remove:hover {
  opacity: 1;
}

.home-neon .voice-lounge {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(86,234,255,.32);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(86,234,255,.1), rgba(255,59,212,.09));
}

.home-neon .voice-lounge h3,
.home-neon .voice-lounge p {
  margin: 0;
}

.home-neon .voice-lounge p {
  color: #ead0f7;
  font-size: .82rem;
  font-weight: 800;
}

.home-neon .chat-users h3 {
  margin: 0;
  font-size: 1rem;
}

.home-neon .chat-user {
  display: flex;
  gap: 9px;
  align-items: center;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.home-neon .chat-user span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: #12051f;
  background-position: center;
  background-size: cover;
  font-size: .75rem;
  font-weight: 900;
}

.home-neon .chat-user strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-neon .chat-user em {
  margin-left: auto;
  border-radius: 999px;
  padding: 4px 7px;
  color: #b8a6c8;
  background: rgba(255,255,255,.08);
  font-size: .68rem;
  font-style: normal;
  font-weight: 1000;
}

.home-neon .chat-user em.online {
  color: #12051f;
  background: linear-gradient(135deg, #95ffba, #56eaff);
}

.home-neon .chat-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
}

.home-neon .chat-header {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 2px solid rgba(255,255,255,.18);
}

.home-neon .chat-header-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: min(520px, 100%);
}

.home-neon .chat-header-tools input {
  width: min(260px, 100%);
}

.home-neon .chat-header h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.home-neon .chat-room-topic {
  max-width: 640px;
  margin: 6px 0 0;
  color: #ead0f7;
  font-weight: 800;
  line-height: 1.5;
}

.home-neon .chat-tool-pill {
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font: inherit;
  font-size: .8rem;
  font-weight: 900;
}

.home-neon .chat-tool-pill:hover {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon #chatStatus {
  border: 1px solid rgba(86,234,255,.42);
  border-radius: 999px;
  padding: 8px 11px;
  color: #56eaff;
  background: rgba(86,234,255,.08);
  font-size: .8rem;
  font-weight: 900;
}

.home-neon #chatOnlineCount {
  border-radius: 999px;
  padding: 8px 11px;
  color: #12051f;
  background: linear-gradient(135deg, #95ffba, #56eaff);
  font-size: .8rem;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(86,234,255,.25);
}

.home-neon .chat-pins {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(255,239,122,.07);
}

.home-neon .chat-pin {
  min-width: 210px;
  border: 1px solid rgba(255,239,122,.45);
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(5,0,10,.72);
  box-shadow: 3px 3px 0 #05000a;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.home-neon .chat-pin strong,
.home-neon .chat-pin span {
  display: block;
}

.home-neon .chat-pin span {
  color: #f4d9ff;
  font-size: .78rem;
}

.home-neon .chat-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  max-height: 470px;
  overflow: auto;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255,59,212,.05) 1px, transparent 1px),
    linear-gradient(rgba(86,234,255,.04) 1px, transparent 1px),
    rgba(2,0,8,.36);
  background-size: 42px 42px;
}

.home-neon .chat-message {
  display: flex;
  max-width: min(720px, 92%);
  gap: 10px;
}

.home-neon .chat-message.pinned .chat-bubble {
  border-color: #ffef7a;
  box-shadow: 0 0 28px rgba(255,239,122,.18), 4px 4px 0 #05000a;
}

.home-neon .chat-message.mine {
  justify-self: end;
  flex-direction: row-reverse;
}

.home-neon .chat-message > div:last-child,
.home-neon .chat-bubble {
  border: 2px solid rgba(255,255,255,.52);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: 4px 4px 0 #05000a;
  backdrop-filter: blur(10px);
}

.home-neon .chat-message.mine > div:last-child,
.home-neon .chat-message.mine .chat-bubble {
  background: linear-gradient(135deg, rgba(255,59,212,.30), rgba(86,234,255,.16));
}

.home-neon .chat-message header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.home-neon .chat-message header span {
  color: #56eaff;
  font-size: .75rem;
  font-weight: 900;
}

.home-neon .chat-message header b {
  border-radius: 999px;
  padding: 3px 7px;
  color: #12051f;
  background: #ffef7a;
  font-size: .68rem;
}

.home-neon .chat-message p,
.home-neon .chat-empty {
  margin: 0;
  color: #f4d9ff;
  line-height: 1.55;
}

.home-neon .chat-message p a {
  color: #56eaff;
  font-weight: 900;
}

.home-neon .chat-message mark {
  border-radius: 5px;
  padding: 1px 4px;
  color: #12051f;
  background: #ffef7a;
}

.home-neon .chat-reply-line {
  margin-bottom: 8px;
  border-left: 3px solid #56eaff;
  padding: 6px 8px;
  border-radius: 6px;
  color: #d9f8ff;
  background: rgba(86,234,255,.09);
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .chat-image {
  display: block;
  margin-top: 10px;
}

.home-neon .chat-image img {
  display: block;
  max-width: min(320px, 100%);
  max-height: 260px;
  border: 2px solid rgba(255,255,255,.58);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(86,234,255,.18);
}

.home-neon .chat-message-tools,
.home-neon .chat-reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.home-neon .chat-message-tools button,
.home-neon .chat-reaction {
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 1000;
}

.home-neon .chat-message-tools button:hover,
.home-neon .chat-reaction:hover,
.home-neon .chat-reaction.active {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .chat-composer {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-top: 2px solid rgba(255,255,255,.18);
}

.home-neon .chat-reply-preview {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(86,234,255,.36);
  border-radius: 8px;
  padding: 9px 11px;
  color: #fff;
  background: rgba(86,234,255,.08);
}

.home-neon .chat-reply-preview[hidden] {
  display: none;
}

.home-neon .chat-reply-preview span {
  color: #56eaff;
  font-size: .75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.home-neon .chat-reply-preview button {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.home-neon .chat-typing {
  min-height: 18px;
  color: #56eaff;
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .chat-extra-row {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
}

.home-neon .chat-emoji-tray {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.home-neon .chat-emoji-tray button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font: inherit;
}

.home-neon .chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-neon .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  min-width: min(620px, 100%);
}
.home-neon .contact-card {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  border: 2px solid rgba(255,255,255,.72);
  background: rgba(255, 59, 212, .12);
  box-shadow: 6px 6px 0 #05000a;
}
.home-neon .contact-card strong { position: relative; z-index: 1; font-size: 1.05rem; }
.home-neon .contact-card span { position: relative; z-index: 1; color: #ead0f7; font-size: .9rem; }

.home-neon .lead-form {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  gap: 16px;
  width: min(100%, 860px);
  margin-top: 24px;
  padding: clamp(18px, 4vw, 28px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.76);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 20%) var(--my, 30%), rgba(255,59,212,.18), transparent 230px),
    rgba(12, 3, 22, .88);
  box-shadow: 0 0 42px rgba(255,59,212,.22), 10px 10px 0 #05000a;
}

.home-neon .lead-form::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.16) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.home-neon .lead-form:hover::before {
  transform: translateX(120%);
}

.home-neon .form-heading,
.home-neon .lead-form label,
.home-neon .lead-form button,
.home-neon .form-note {
  position: relative;
  z-index: 1;
}

.home-neon .form-heading h3 {
  margin: 0;
}

.home-neon .lead-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.home-neon .form-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-neon .lead-form input,
.home-neon .lead-form textarea {
  width: 100%;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(5, 0, 10, .72);
  box-shadow: inset 0 0 18px rgba(255,59,212,.12);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-neon .lead-form input:focus,
.home-neon .lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(86,234,255,.32), inset 0 0 18px rgba(255,59,212,.18);
  transform: translateY(-1px);
}

.home-neon .lead-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
}

.home-neon .form-note {
  margin: 0;
  color: #ead0f7;
  font-size: .86rem;
}

.home-neon .is-pressed {
  transform: translateY(2px) scale(.985) !important;
  filter: brightness(1.15) saturate(1.25);
}

.home-neon .glow-burst {
  animation: glow-burst .45s ease-out;
}

.home-neon .reveal {
  transform: translateY(34px) scale(.985);
  filter: blur(6px);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.home-neon .reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes neon-title-flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 26px rgba(255, 59, 212, .75), 8px 8px 0 rgba(86, 234, 255, .16); }
  47% { opacity: .96; text-shadow: 0 0 18px rgba(255, 59, 212, .55), 8px 8px 0 rgba(86, 234, 255, .11); }
  50% { opacity: 1; text-shadow: 0 0 36px rgba(255, 59, 212, .95), 0 0 74px rgba(86, 234, 255, .28); }
  52% { opacity: .92; }
  55% { opacity: 1; }
}

@keyframes glow-burst {
  from { box-shadow: 0 0 0 rgba(255,59,212,0), 0 0 0 rgba(86,234,255,0); }
  45% { box-shadow: 0 0 42px rgba(255,59,212,.75), 0 0 86px rgba(86,234,255,.28); }
  to { box-shadow: inherit; }
}
.home-neon .neon-footer { background: #05000a; border-top: 1px solid rgba(255,59,212,.28); }

.home-neon .music-section {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(26px, 5vw, 60px) auto;
  padding: clamp(18px, 4vw, 30px);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 18%) var(--my, 40%), rgba(86,234,255,.16), transparent 260px),
    linear-gradient(135deg, rgba(255,59,212,.13), rgba(86,234,255,.09)),
    rgba(8, 1, 16, .82);
  box-shadow: 0 0 48px rgba(255,59,212,.22), 10px 10px 0 #05000a;
}

.home-neon .account-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: clamp(18px, 4vw, 36px);
  width: min(1120px, calc(100% - 32px));
  margin: clamp(24px, 5vw, 54px) auto;
  padding: clamp(18px, 4vw, 28px);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,59,212,.18), transparent 230px),
    radial-gradient(circle at 86% 72%, rgba(86,234,255,.13), transparent 260px),
    rgba(8, 1, 16, .82);
  box-shadow: 0 0 44px rgba(255,59,212,.20), 10px 10px 0 #05000a;
}

.home-neon .account-copy h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.home-neon .account-panel {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 3vw, 22px);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,59,212,.16), rgba(86,234,255,.10)),
    rgba(5,0,10,.66);
  box-shadow: 0 0 34px rgba(255,59,212,.18), 8px 8px 0 #05000a;
}

.home-neon .account-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.home-neon .account-status span,
.home-neon .account-status strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,59,212,.13);
  box-shadow: 4px 4px 0 #05000a;
  font-size: .86rem;
}

.home-neon .oauth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-neon .oauth-actions a[aria-disabled="true"] {
  opacity: .58;
  pointer-events: none;
}

.home-neon .account-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-neon .account-forms form {
  display: grid;
  gap: 11px;
  padding: 14px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 8px;
  background: rgba(5,0,10,.55);
}

.home-neon .account-forms h3 {
  margin: 0;
  font-size: 1.2rem;
}

.home-neon .account-forms input[type="text"],
.home-neon .account-forms input[type="email"],
.home-neon .account-forms input[type="password"] {
  min-height: 46px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: rgba(5,0,10,.72);
  font: inherit;
  outline: none;
}

.home-neon .account-forms input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(86,234,255,.25);
}

.home-neon .consent-line,
.home-neon .consent-switch {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #f4d9ff;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.45;
}

.home-neon .consent-switch {
  padding: 12px;
  border: 1px solid rgba(86,234,255,.42);
  border-radius: 8px;
  background: rgba(86,234,255,.08);
}

.home-neon .music-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.home-neon .music-head h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.home-neon .music-status {
  min-width: 128px;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,59,212,.16);
  box-shadow: 0 0 24px rgba(255,59,212,.24), 5px 5px 0 #05000a;
  font-weight: 900;
  text-align: center;
}

.home-neon .music-console {
  display: grid;
  gap: 18px;
}

.home-neon .music-controls {
  display: grid;
  grid-template-columns: auto auto minmax(170px, 1fr) minmax(170px, 1fr);
  gap: 12px;
  align-items: center;
}

.home-neon .music-controls label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.home-neon .music-controls input[type="range"] {
  accent-color: #ff3bd4;
}

.home-neon .track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-neon .track-button {
  min-height: 78px;
  border: 2px solid rgba(255,255,255,.66);
  border-radius: 8px;
  padding: 11px;
  color: #fff;
  background: rgba(5, 0, 10, .52);
  box-shadow: 5px 5px 0 #05000a;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-neon .track-button:hover,
.home-neon .track-button.is-active {
  transform: translateY(-4px);
  border-color: #56eaff;
  background: linear-gradient(135deg, rgba(255,59,212,.28), rgba(86,234,255,.18));
  box-shadow: 0 0 26px rgba(255,59,212,.28), 5px 5px 0 #05000a;
}

.home-neon .track-button strong,
.home-neon .track-button span {
  display: block;
}

.home-neon .track-button strong {
  margin-bottom: 4px;
}

.home-neon .track-button span {
  color: #ead0f7;
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .home-neon .neon-hero {
    grid-template-columns: 1fr;
  }

  .home-neon .visitor-pulse {
    grid-template-columns: 1fr;
  }

  .home-neon .account-section,
  .home-neon .account-forms {
    grid-template-columns: 1fr;
  }

  .home-neon h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .home-neon .contact-grid,
  .home-neon .hero-stats,
  .home-neon .profile-stats,
  .home-neon .vote-board,
  .home-neon .visitor-fields,
  .home-neon .form-row { grid-template-columns: 1fr; }

  .home-neon .music-controls,
  .home-neon .track-grid {
    grid-template-columns: 1fr;
  }
}

/* Final form polish: keep visitor/contact forms compact and readable. */
.home-neon .visitor-pulse.section {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(22px, 4vw, 42px) auto 0;
  padding: clamp(18px, 3vw, 26px);
}

.home-neon .visitor-copy h2 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(2.05rem, 4.4vw, 4.2rem);
  line-height: .98;
}

.home-neon .visitor-form,
.home-neon .lead-form {
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.home-neon .visitor-form {
  padding: clamp(16px, 3vw, 22px);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,239,122,.12), transparent 32%),
    linear-gradient(145deg, rgba(255,59,212,.16), rgba(86,234,255,.10)),
    rgba(5, 0, 10, .58);
  box-shadow: 0 0 38px rgba(255,59,212,.24), 8px 8px 0 #05000a;
}

.home-neon .visitor-fields,
.home-neon .form-row {
  align-items: stretch;
}

.home-neon .visitor-form input,
.home-neon .lead-form input,
.home-neon .lead-form textarea {
  min-height: 48px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(5, 0, 10, .72);
  box-shadow: inset 0 0 20px rgba(255,59,212,.12);
  font: inherit;
}

.home-neon .lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.home-neon .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-neon .form-actions .button {
  min-width: 170px;
}

.home-neon .mail-fallback {
  border-color: rgba(86,234,255,.78);
  color: #fff;
  background: rgba(86,234,255,.10);
}

.home-neon .lead-form input[name="_honey"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.home-neon .visitor-form .form-note,
.home-neon .lead-form .form-note,
.home-neon .optional-note {
  max-width: 720px;
  color: #f4d9ff;
}

.home-neon .optional-note {
  margin: -2px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(86,234,255,.42);
  border-radius: 8px;
  background: rgba(86,234,255,.08);
  font-size: .86rem;
  font-weight: 900;
}

/* Unified neon polish for home modules. */
.home-neon .visitor-pulse,
.home-neon .account-section,
.home-neon .neon-about,
.home-neon .neon-projects,
.home-neon .neon-skills,
.home-neon .neon-contact,
.home-neon .music-section {
  isolation: isolate;
}

.home-neon .visitor-form,
.home-neon .account-panel,
.home-neon .lead-form,
.home-neon .project-card,
.home-neon .music-console {
  position: relative;
}

.home-neon .visitor-form::after,
.home-neon .account-panel::after,
.home-neon .lead-form::after,
.home-neon .project-card::after,
.home-neon .music-console::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.16) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity .25s ease, transform .55s ease;
  pointer-events: none;
}

.home-neon .visitor-form:hover::after,
.home-neon .account-panel:hover::after,
.home-neon .lead-form:hover::after,
.home-neon .project-card:hover::after,
.home-neon .music-console:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.home-neon .account-section {
  margin-top: clamp(18px, 4vw, 42px);
}

.home-neon.auth-locked {
  overflow: hidden;
}

.home-neon.auth-locked .site-header,
.home-neon.auth-locked main,
.home-neon.auth-locked footer,
.home-neon.auth-locked .music-player,
.home-neon.auth-locked .scroll-meter {
  pointer-events: none;
  user-select: none;
  filter: blur(10px) brightness(.45);
}

/* Keep the sign-in screen light: animated visuals begin after authentication. */
.home-neon.auth-locked .ambient-canvas,
.home-neon.auth-locked .cursor-glow {
  display: none;
}

.home-neon.auth-unlocked .auth-gate {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-18px) scale(.985);
}

.home-neon .auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 620px);
  gap: clamp(18px, 5vw, 64px);
  align-items: center;
  padding: clamp(20px, 6vw, 72px);
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  box-sizing: border-box;
  overflow: auto;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,59,212,.32), transparent 280px),
    radial-gradient(circle at 86% 18%, rgba(86,234,255,.24), transparent 320px),
    linear-gradient(135deg, rgba(5,0,10,.94), rgba(22,2,32,.96));
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.home-neon .auth-gate *,
.home-neon .auth-gate *::before,
.home-neon .auth-gate *::after {
  box-sizing: border-box;
  min-width: 0;
}

.home-neon .auth-gate-brand {
  display: grid;
  gap: 14px;
  color: #fff;
}

.home-neon .auth-gate-brand .brand-mark {
  width: 72px;
  height: 72px;
  font-size: 1.2rem;
}

.home-neon .auth-gate-brand h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .95;
  text-shadow: 0 0 36px rgba(255,59,212,.62), 0 0 72px rgba(86,234,255,.18);
}

.home-neon .auth-gate-brand p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: #ead0f7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.6;
}

.home-neon .auth-gate-status {
  width: fit-content;
  border: 2px solid rgba(86,234,255,.5);
  border-radius: 999px;
  padding: 10px 14px;
  color: #56eaff;
  background: rgba(86,234,255,.08);
  box-shadow: 0 0 24px rgba(86,234,255,.18), 4px 4px 0 #05000a;
  font-weight: 1000;
}

.home-neon .auth-gate-card {
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: clamp(16px, 3vw, 24px);
  border: 2px solid rgba(255,255,255,.76);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,59,212,.2), transparent 220px),
    rgba(5,0,10,.78);
  box-shadow: 0 0 52px rgba(255,59,212,.28), 10px 10px 0 #05000a;
}

.home-neon .auth-social-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-neon .auth-oauth-note {
  margin: 0;
  color: #ead0f7;
  font-size: .86rem;
  font-weight: 800;
}

.home-neon .auth-gate-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.home-neon .auth-gate-forms form {
  display: grid;
  gap: 10px;
  border: 2px solid rgba(255,255,255,.46);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.06);
}

.home-neon .auth-gate-forms h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.home-neon .auth-gate-forms input[type="text"],
.home-neon .auth-gate-forms input[type="email"],
.home-neon .auth-gate-forms input[type="password"] {
  width: 100%;
  min-height: 44px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 8px;
  padding: 0 13px;
  color: #fff;
  background: rgba(2,0,8,.72);
  font: inherit;
  outline: none;
}

.home-neon .auth-gate-forms input:focus {
  border-color: #56eaff;
  box-shadow: 0 0 22px rgba(86,234,255,.25);
}

/* Stability and smoothness pass: content must never stay hidden if JS/observer stalls. */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.home-neon,
.home-neon button,
.home-neon input,
.home-neon textarea,
.home-neon select {
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.home-neon .reveal,
.home-neon .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.home-neon .section,
.home-neon .project-card,
.home-neon .module-card,
.home-neon .contact-card,
.home-neon .tool-app {
  contain: layout paint;
}

.home-neon .project-card,
.home-neon .module-card,
.home-neon .contact-card {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-neon *,
  .home-neon *::before,
  .home-neon *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .home-neon .ambient-canvas,
  .home-neon .cursor-glow {
    display: none !important;
  }
}

.home-neon .account-copy {
  align-self: center;
}

.home-neon .account-copy .section-note::before {
  display: inline-block;
  margin-right: 8px;
  color: #56eaff;
  content: "Quyen rieng tu:";
  font-weight: 900;
}

.home-neon .account-status strong {
  color: #12051f;
  background: linear-gradient(135deg, #ffef7a, #56eaff);
}

.home-neon .consent-line input,
.home-neon .consent-switch input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ff3bd4;
}

.home-neon .account-forms button,
.home-neon .oauth-actions .button {
  justify-content: center;
}

@media (max-width: 980px) {
  .home-neon .auth-gate {
    grid-template-columns: 1fr;
    align-items: start;
    width: 100vw;
    padding: 30px;
    overflow-x: hidden;
  }

  .home-neon .auth-gate-card {
    max-width: calc(100vw - 60px);
  }

  .home-neon .auth-gate-brand h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: .98;
    overflow-wrap: break-word;
  }

  .home-neon .auth-social-row {
    grid-template-columns: 1fr;
  }

  .home-neon .auth-gate-forms {
    grid-template-columns: 1fr;
  }

  .home-neon .account-section {
    grid-template-columns: 1fr;
  }

  .home-neon .workspace-controls,
  .home-neon .workspace-controls.three-cols {
    grid-template-columns: 1fr;
  }

  .home-neon .platform-livebar,
  .home-neon .google-live-search,
  .home-neon .module-row-body,
  .home-neon .command-hero,
  .home-neon .command-grid,
  .home-neon .studio-hero,
  .home-neon .studio-grid {
    grid-template-columns: 1fr;
  }

  .home-neon .command-clock {
    justify-items: start;
  }

  .home-neon .google-live-links {
    justify-content: flex-start;
  }

  .home-neon .module-row-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-neon .module-row-head .module-card-fav {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .home-neon .module-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-neon .chat-app {
    grid-template-columns: 1fr;
  }

  .home-neon .chat-server-rail {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 2px solid rgba(255,255,255,.18);
  }

  .home-neon .chat-sidebar {
    border-right: 0;
    border-bottom: 2px solid rgba(255,255,255,.24);
  }

  .home-neon .chat-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-neon .chat-header-tools,
  .home-neon .chat-extra-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

@media (max-width: 620px) {
  .home-neon .platform-overview,
  .home-neon .module-tool-grid,
  .home-neon .module-grid,
  .home-neon .chat-actions {
    grid-template-columns: 1fr;
  }

  .home-neon .chat-actions {
    display: grid;
  }

  .home-neon .chat-message {
    max-width: 100%;
  }
}

/* HH Social */
.home-neon .community-center-app{--cs:#111720;--cr:#19212c;--cb:#303a49;--cm:#aab5c4;--ca:#55e7ea;display:grid;gap:14px;color:#f6f8fb}.home-neon .community-center-app *{letter-spacing:0}.home-neon .community-hero{position:sticky;z-index:5;top:0;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px 22px;border:1px solid var(--cb);border-radius:8px;background:rgba(13,18,25,.96);box-shadow:0 16px 40px #0005;backdrop-filter:blur(18px)}.home-neon .community-hero h4{margin:2px 0 4px;font-size:1.75rem}.home-neon .community-hero-actions{display:flex;align-items:center;gap:10px}.home-neon .community-search{display:flex;align-items:center;gap:8px;width:min(310px,30vw);padding:0 12px;border:1px solid var(--cb);border-radius:999px;background:#0c1118}.home-neon .community-search input{width:100%;height:40px;border:0;background:transparent;color:#fff;outline:0}.home-neon .community-layout{display:grid;grid-template-columns:minmax(210px,245px) minmax(460px,720px) minmax(220px,300px);justify-content:center;gap:16px;align-items:start}.home-neon .community-nav,.home-neon .community-side{position:sticky;top:94px;max-height:calc(100vh - 108px);overflow:auto}.home-neon .community-nav{display:flex;flex-direction:column;gap:4px;padding:8px;border:0;background:transparent}.home-neon .community-nav>button,.home-neon .community-nav section button{min-height:42px;padding:9px 11px;border:0;border-radius:7px;background:transparent;color:#d9dfe8;text-align:left;transition:.18s}.home-neon .community-nav button:hover,.home-neon .community-nav button.active{background:#222b37;color:#fff;transform:translateX(2px)}.home-neon .community-nav section{display:grid;gap:3px;padding:12px 0 6px;border-top:1px solid var(--cb)}.home-neon .community-nav section strong{padding:0 11px 6px;color:var(--cm);font-size:.7rem;text-transform:uppercase}.home-neon .community-profile-card{display:grid!important;grid-template-columns:44px 1fr;align-items:center;gap:9px;padding:8px 6px 14px!important;border-top:0!important}.home-neon .community-profile-card div{display:grid;min-width:0}.home-neon .community-profile-card small{overflow:hidden;color:var(--cm);font-size:.66rem;text-overflow:ellipsis}.home-neon .community-avatar{display:grid;place-items:center;width:42px;height:42px;overflow:hidden;border:2px solid #fff;border-radius:50%;background:linear-gradient(145deg,#ff4fd8,var(--ca));color:#11151d;font-weight:900}.home-neon .community-avatar img{width:100%;height:100%;object-fit:cover}.home-neon .community-online{margin-top:12px;padding:12px;border:1px solid #55e7ea44;border-radius:7px;background:#55e7ea0d}.home-neon .community-feed{display:grid;gap:12px;min-width:0}.home-neon .community-stories{display:grid;grid-auto-columns:112px;grid-auto-flow:column;gap:8px;overflow-x:auto;padding:2px 2px 8px}.home-neon .community-story{position:relative;display:flex;flex-direction:column;justify-content:space-between;height:165px;padding:12px;overflow:hidden;border:1px solid var(--cb);border-radius:8px;background:linear-gradient(155deg,#2b1740,#10151d);color:#fff;text-align:left}.home-neon .community-story:nth-child(3n){background:linear-gradient(155deg,#123f46,#10151d)}.home-neon .community-story:after{position:absolute;inset:0;background:linear-gradient(transparent 42%,#000d);content:""}.home-neon .community-story span,.home-neon .community-story strong{position:relative;z-index:1}.home-neon .community-story span{display:grid;place-items:center;width:38px;height:38px;border:3px solid var(--ca);border-radius:50%;background:#17202b;font-weight:900}.home-neon .community-story strong{font-size:.7rem}.home-neon .story-create span{background:var(--ca);color:#071112;font-size:1.4rem}.home-neon .community-composer,.home-neon .community-post,.home-neon .community-side>section{border:1px solid var(--cb);border-radius:8px;background:var(--cs);box-shadow:0 7px 24px #0003}.home-neon .community-composer{padding:14px}.home-neon .community-composer>div:first-child{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px}.home-neon .community-composer textarea{min-height:72px;resize:vertical;padding:12px 15px;border:1px solid transparent;border-radius:24px;background:#232b37;color:#fff}.home-neon .community-composer textarea:focus{border-color:var(--ca);border-radius:8px}.home-neon .composer-media{display:grid;grid-template-columns:1fr 110px;gap:8px;margin:10px 0 0 52px}.home-neon .composer-media[hidden]{display:none}.home-neon .composer-media input,.home-neon .composer-media select{min-height:40px;padding:0 10px;border:1px solid var(--cb);border-radius:6px;background:#0c1118;color:#fff}.home-neon .community-composer footer{display:grid;grid-template-columns:minmax(220px,1fr) auto auto auto;align-items:end;gap:8px;margin-top:11px;padding-top:10px;border-top:1px solid var(--cb)}.home-neon .community-composer footer>div{display:flex;flex-wrap:wrap;gap:4px}.home-neon .community-composer footer>div button{padding:8px;border:0;border-radius:6px;background:transparent;color:#cbd3de}.home-neon .community-composer footer>div button:hover{background:#222b37}.home-neon .community-composer footer label{display:grid;gap:3px;color:var(--cm);font-size:.58rem}.home-neon .community-composer select{height:36px;border:1px solid var(--cb);border-radius:5px;background:#0c1118;color:#fff}.home-neon .community-feed-status{padding:4px 10px;color:var(--cm);font-size:.64rem;text-align:center}.home-neon [data-community-posts]{display:grid;gap:12px}.home-neon .community-post{padding:0;overflow:visible}.home-neon .community-post header{display:grid;grid-template-columns:42px minmax(0,1fr) 36px;gap:10px;align-items:center;padding:14px 15px 8px}.home-neon .community-post header>div{display:grid;min-width:0}.home-neon .community-post header strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-neon .community-post header em{color:#ffd75a;font-size:.6rem;font-style:normal}.home-neon .community-post header small{color:var(--cm);font-size:.63rem}.home-neon .community-icon-button{width:34px;height:34px;border:0;border-radius:50%;background:transparent;color:var(--cm)}.home-neon .community-icon-button:hover{background:#252e3a}.home-neon .community-post>p{margin:0;padding:7px 15px 13px;color:#edf1f7;line-height:1.55;overflow-wrap:anywhere}.home-neon .community-media{display:block;width:100%;max-height:620px;border-block:1px solid var(--cb);background:#07090d;object-fit:contain}.home-neon .post-social-proof{display:flex;justify-content:space-between;gap:12px;padding:9px 15px;color:var(--cm);font-size:.63rem}.home-neon .post-actions{display:grid;grid-template-columns:repeat(4,1fr);gap:3px;margin:0 12px;padding:4px 0;border-block:1px solid var(--cb)}.home-neon .post-actions>button,.home-neon .reaction-wrap>button{width:100%;min-height:38px;border:0;border-radius:5px;background:transparent;color:#c7cfda;font-weight:700}.home-neon .post-actions button:hover,.home-neon .post-actions button.active{background:#222b37;color:var(--ca)}.home-neon .reaction-wrap{position:relative}.home-neon .reaction-picker{position:absolute;z-index:8;bottom:38px;left:0;display:flex;gap:2px;padding:5px;visibility:hidden;border:1px solid var(--cb);border-radius:999px;background:#1b232e;box-shadow:0 12px 30px #000;opacity:0;transition:.15s}.home-neon .reaction-wrap:hover .reaction-picker,.home-neon .reaction-wrap:focus-within .reaction-picker{visibility:visible;opacity:1;transform:translateY(-3px)}.home-neon .reaction-picker button{display:grid;place-items:center;width:36px;height:36px;border:0;border-radius:50%;background:transparent;font-size:1.3rem}.home-neon .reaction-picker button:hover{transform:translateY(-5px) scale(1.16)}.home-neon .post-comments{display:grid;gap:9px;padding:11px 15px 14px}.home-neon .community-comment{display:grid;grid-template-columns:32px minmax(0,1fr);gap:7px;align-items:start}.home-neon .community-comment>span,.home-neon .post-comments form>span{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:#293341;color:var(--ca);font-size:.56rem;font-weight:900}.home-neon .community-comment>div{justify-self:start;padding:7px 10px;border-radius:7px;background:#222a35}.home-neon .community-comment strong{font-size:.66rem}.home-neon .community-comment p{margin:2px 0;color:#e9edf4;font-size:.68rem}.home-neon .community-comment small{color:var(--cm);font-size:.56rem}.home-neon .community-comment small button{border:0;background:transparent;color:var(--ca);font-size:inherit}.home-neon .post-comments form{display:grid;grid-template-columns:30px minmax(0,1fr) 44px;gap:7px;align-items:center}.home-neon .post-comments input{height:38px;padding:0 12px;border:1px solid transparent;border-radius:999px;background:#222a35;color:#fff}.home-neon .post-comments form button{height:36px;border:0;border-radius:6px;background:var(--ca);color:#071112;font-weight:900}.home-neon .community-side{display:grid;align-content:start;gap:12px}.home-neon .community-side>section{padding:12px}.home-neon .community-side header{display:flex;align-items:center;justify-content:space-between}.home-neon .community-side header span{color:#f1f4f8;font-size:.7rem;font-weight:900}.home-neon .community-side header button{border:0;background:transparent;color:var(--ca);font-size:.6rem}.home-neon .community-sponsored{display:grid;gap:7px;padding:10px;border-radius:6px;background:linear-gradient(135deg,#ff4fd822,#55e7ea12)}.home-neon .community-sponsored p{margin:0;color:var(--cm);font-size:.64rem}.home-neon .community-side article{grid-template-columns:34px minmax(0,1fr) auto;padding:9px 0}.home-neon .community-contact{display:grid;grid-template-columns:34px 1fr;gap:8px;align-items:center;width:100%;padding:7px;border:0;border-radius:6px;background:transparent;color:#fff;text-align:left}.home-neon .community-contact:hover{background:#222b37}.home-neon .community-contact>span{position:relative;display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:#293341;color:var(--ca);font-size:.58rem}.home-neon .community-contact i,.home-neon .community-presence{display:block;width:9px;height:9px;border-radius:50%;background:#4de5a6}.home-neon .community-contact i{position:absolute;right:0;bottom:0}.home-neon .community-contact strong{font-size:.68rem}
@media(max-width:1180px){.home-neon .community-layout{grid-template-columns:210px minmax(430px,700px)}.home-neon .community-side{display:none}}
@media(max-width:820px){.home-neon .community-hero{position:relative;top:auto;align-items:stretch;flex-direction:column}.home-neon .community-hero-actions{align-items:stretch;flex-direction:column}.home-neon .community-search{width:100%}.home-neon .community-layout{grid-template-columns:1fr}.home-neon .community-nav{position:relative;top:auto;display:grid;grid-template-columns:repeat(4,minmax(100px,1fr));max-height:none;overflow-x:auto}.home-neon .community-profile-card,.home-neon .community-nav section,.home-neon .community-online{display:none!important}.home-neon .community-nav>button{text-align:center}}
@media(max-width:560px){.home-neon .community-hero{padding:14px}.home-neon .community-hero h4{font-size:1.35rem}.home-neon .community-nav{grid-template-columns:repeat(4,112px)}.home-neon .community-stories{grid-auto-columns:96px}.home-neon .community-story{height:140px}.home-neon .community-composer footer{grid-template-columns:1fr 1fr}.home-neon .community-composer footer>div{grid-column:1/-1}.home-neon .composer-media{grid-template-columns:1fr;margin-left:0}.home-neon .post-actions{grid-template-columns:repeat(3,1fr)}.home-neon .post-actions>[data-post-save]{display:none}.home-neon .post-social-proof{align-items:flex-start;flex-direction:column;gap:3px}.home-neon .community-media{max-height:460px}}

/* App Shell: stable dashboard navigation over existing feature workspaces. */
.app-shell[hidden]{display:none}.app-shell{--shell-bg:#08070e;--shell-panel:#100c18;--shell-line:rgba(255,255,255,.1);--shell-text:#f5eff8;--shell-muted:#a99db1;--shell-accent:#ff4bce;--shell-cyan:#5cf5ed;position:fixed;inset:0;z-index:80;min-height:100dvh;color:var(--shell-text);background:var(--shell-bg)}.app-header{position:relative;z-index:2;display:grid;grid-template-columns:minmax(220px,.65fr) minmax(320px,1.3fr) minmax(280px,.7fr);align-items:center;min-height:64px;gap:16px;padding:0 18px;border-bottom:1px solid var(--shell-line);background:linear-gradient(90deg,#0c0912,#100a17 48%,#0b1116)}.app-header__start,.app-header__actions,.app-brand,.app-user-button,.app-global-search,.app-action-button{display:flex;align-items:center}.app-header__start{gap:10px}.app-header__actions{justify-content:flex-end;gap:8px}.app-icon-button,.app-action-button,.app-user-button,.app-global-search,.app-sidebar button,.app-page-header button,.dashboard-quick-actions button,.dashboard-panel button,.app-item-grid button,.app-settings-list button,.command-palette button{min-height:40px;border:1px solid transparent;border-radius:6px;background:transparent;color:inherit;font:inherit;cursor:pointer}.app-icon-button{display:grid;place-items:center;width:40px;padding:0;color:var(--shell-muted)}.app-icon-button:hover,.app-action-button:hover,.app-user-button:hover{background:rgba(255,255,255,.06);color:#fff}.app-brand{gap:9px;color:#fff;font-weight:800}.app-brand span,.app-user-button span{display:grid;place-items:center;width:31px;height:31px;border:1px solid rgba(255,255,255,.6);border-radius:7px;background:linear-gradient(135deg,#ff4bce,#5cf5ed);color:#150018;font-size:.75rem;font-weight:900;box-shadow:0 0 18px rgba(255,75,206,.28)}.app-global-search{justify-content:flex-start;gap:10px;width:100%;min-height:40px;padding:0 12px;border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.035);color:var(--shell-muted);text-align:left}.app-global-search>span:first-child{color:var(--shell-cyan);font-size:1.2rem}.app-global-search kbd{margin-left:auto;padding:3px 6px;border:1px solid rgba(255,255,255,.16);border-radius:4px;color:#93869b;font-size:.67rem}.app-action-button{gap:5px;padding:0 10px;color:var(--shell-muted)}.app-user-button{gap:7px;padding:4px 7px;color:#fff}.app-user-button strong{max-width:106px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.75rem}.app-user-button span{width:28px;height:28px;border-radius:50%}.app-shell__body{display:grid;grid-template-columns:248px minmax(0,1fr);height:calc(100dvh - 64px)}.app-sidebar{display:flex;flex-direction:column;min-height:0;padding:12px 9px;overflow-y:auto;border-right:1px solid var(--shell-line);background:#0b0911}.app-sidebar__primary{display:grid;gap:4px}.app-sidebar__group{display:grid;gap:2px}.app-sidebar__item{display:grid;grid-template-columns:24px 1fr 18px;align-items:center;gap:8px;width:100%;padding:0 10px;color:var(--shell-muted);text-align:left}.app-sidebar__item>b{font-size:.82rem}.app-sidebar__item>i{color:#766b7d;font-style:normal}.app-sidebar__item:hover{background:rgba(255,255,255,.05);color:#fff}.app-sidebar__item.is-active{background:linear-gradient(90deg,rgba(255,75,206,.16),rgba(92,245,237,.06));color:#fff}.app-sidebar__submenu{display:none;margin:0 0 5px 34px;padding-left:8px;border-left:1px solid rgba(255,255,255,.12)}.app-sidebar__group.is-expanded .app-sidebar__submenu{display:grid;gap:2px}.app-sidebar__subitem{min-height:32px;padding:0 8px;border:0;border-radius:4px;background:transparent;color:#9f93a7;text-align:left;font:inherit;font-size:.72rem;cursor:pointer}.app-sidebar__subitem:hover{background:rgba(255,255,255,.05);color:#fff}.app-sidebar__footer{display:grid;gap:4px;margin-top:auto;padding-top:12px;border-top:1px solid var(--shell-line)}.app-sidebar__footer .app-sidebar__item{grid-template-columns:24px 1fr}.app-main{min-width:0;min-height:0;overflow:auto;background:linear-gradient(145deg,#0c0911,#0d0b13 55%,#081115)}.app-breadcrumb{display:flex;align-items:center;gap:7px;min-height:38px;padding:0 clamp(18px,3vw,42px);border-bottom:1px solid rgba(255,255,255,.07);color:#93889b;font-size:.72rem}.app-breadcrumb button{padding:2px;border:0;background:transparent;color:inherit;font:inherit;cursor:pointer}.app-breadcrumb button[aria-current]{color:#e9ddeb}.app-page-header{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;padding:24px clamp(18px,3vw,42px) 18px}.app-page-header__eyebrow{margin:0 0 5px;color:var(--shell-cyan);font-size:.68rem;font-weight:900;text-transform:uppercase}.app-page-header h1{margin:0;color:#fff;font-size:clamp(1.45rem,2.6vw,2rem);letter-spacing:0}.app-page-header p{margin:6px 0 0;color:var(--shell-muted)}.app-page-header__actions{display:flex;gap:7px}.app-page-header__actions button{padding:0 10px;border-color:rgba(255,255,255,.16);color:#d3c5d8}.app-page-header__actions .app-primary-action{border-color:var(--shell-accent);background:rgba(255,75,206,.12);color:#fff}.app-workspace{min-height:calc(100% - 142px);padding:0 clamp(18px,3vw,42px) 42px}.app-workspace__platform{max-width:none;margin:0;padding:0}.app-workspace__platform>.section-heading,.app-workspace__platform .platform-overview,.app-workspace__platform .platform-livebar{display:none}.app-workspace__platform .platform-toolbar{position:sticky;top:0;z-index:4;margin:0 0 16px;padding:10px;border:1px solid var(--shell-line);border-radius:6px;background:rgba(13,10,18,.96)}.app-workspace__platform .platform-console{margin-bottom:16px;border-radius:6px;box-shadow:none}.app-workspace__platform .module-grid{grid-template-columns:1fr;gap:14px}.app-workspace__platform .module-row{border-radius:6px;box-shadow:none}.app-workspace__platform .module-row-body{grid-template-columns:minmax(240px,.45fr) minmax(0,1fr)}.dashboard-home{display:grid;gap:16px}.dashboard-welcome{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px;border:1px solid var(--shell-line);border-radius:8px;background:radial-gradient(circle at 85% 25%,rgba(92,245,237,.12),transparent 28%),radial-gradient(circle at 10% 0%,rgba(255,75,206,.14),transparent 32%),#110d18}.dashboard-welcome h2{margin:4px 0;color:#fff;font-size:1.55rem}.dashboard-welcome p{margin:0;color:var(--shell-muted)}.dashboard-clock{display:grid;min-width:170px;text-align:right}.dashboard-clock strong{color:var(--shell-cyan);font-size:1.45rem}.dashboard-clock span{color:#a899ae;font-size:.7rem}.dashboard-quick-actions{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.dashboard-quick-actions button{display:grid;gap:4px;min-height:116px;padding:14px;border-color:var(--shell-line);background:#110d18;color:#fff;text-align:left}.dashboard-quick-actions button:hover{border-color:rgba(255,75,206,.55);background:linear-gradient(145deg,rgba(255,75,206,.12),rgba(92,245,237,.05));transform:translateY(-2px)}.dashboard-quick-actions span{color:var(--shell-cyan);font-size:1.25rem}.dashboard-quick-actions small{color:var(--shell-muted);line-height:1.45}.dashboard-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.dashboard-panel{min-width:0;padding:16px;border:1px solid var(--shell-line);border-radius:6px;background:#100c17}.dashboard-panel header{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px}.dashboard-panel header>div{display:grid;gap:2px}.dashboard-panel header span{color:var(--shell-cyan);font-size:.65rem;font-weight:900;text-transform:uppercase}.dashboard-panel header button{min-height:32px;padding:0 8px;border-color:rgba(255,255,255,.15);color:#d8cbdc;font-size:.7rem}.dashboard-list{display:grid;gap:7px}.dashboard-list button{display:grid;grid-template-columns:54px minmax(0,1fr) 18px;gap:8px;align-items:center;padding:10px;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.025);color:#fff;text-align:left}.dashboard-list button>span{color:var(--shell-cyan);font-size:.62rem}.dashboard-list button>strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dashboard-list button>small{grid-column:2;color:var(--shell-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dashboard-panel--guide{grid-column:1/-1}.dashboard-panel--guide ol{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:0;padding:0;list-style:none;counter-reset:guide}.dashboard-panel--guide li{counter-increment:guide;padding:11px;border-left:2px solid var(--shell-accent);background:rgba(255,255,255,.025);color:#cfc1d4}.dashboard-panel--guide li::before{content:counter(guide,decimal-leading-zero);display:block;margin-bottom:5px;color:var(--shell-cyan);font-weight:900}.app-simple-view{display:grid;gap:14px}.app-simple-view__intro{padding:18px;border:1px solid var(--shell-line);border-radius:7px;background:#100c17}.app-simple-view__intro h2{margin:4px 0;color:#fff}.app-simple-view__intro p{margin:0;color:var(--shell-muted)}.app-item-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.app-item-grid button{display:grid;gap:6px;padding:14px;border-color:var(--shell-line);background:#100c17;color:#fff;text-align:left}.app-item-grid span{color:var(--shell-cyan);font-size:.64rem;text-transform:uppercase}.app-item-grid p{margin:0;color:var(--shell-muted);font-size:.75rem;line-height:1.5}.app-empty-state{display:grid;place-items:center;gap:7px;min-height:260px;padding:22px;border:1px dashed rgba(255,255,255,.2);color:var(--shell-muted);text-align:center}.app-empty-state strong{color:#fff}.app-empty-state p{margin:0}.app-empty-state button,.app-settings-list button{padding:9px 12px;border-color:var(--shell-accent);background:rgba(255,75,206,.1);color:#fff}.app-settings-list{display:grid;gap:8px;max-width:620px}.app-settings-list label{display:flex;justify-content:space-between;align-items:center;min-height:48px;padding:0 12px;border:1px solid var(--shell-line);background:#100c17}.app-settings-list input{accent-color:var(--shell-accent)}.command-palette{width:min(700px,calc(100vw - 32px));padding:0;border:1px solid rgba(255,75,206,.65);border-radius:8px;background:#110c18;color:#fff;box-shadow:0 28px 90px rgba(0,0,0,.7)}.command-palette::backdrop{background:rgba(0,0,0,.68);backdrop-filter:blur(5px)}.command-palette__header{display:grid;grid-template-columns:32px 1fr auto;align-items:center;gap:8px;min-height:56px;padding:0 14px;border-bottom:1px solid var(--shell-line);color:var(--shell-cyan)}.command-palette__header input{min-width:0;border:0;outline:0;background:transparent;color:#fff;font:inherit}.command-palette__header kbd{color:#8f8298;font-size:.68rem}.command-palette__results{display:grid;gap:4px;max-height:min(56dvh,510px);overflow-y:auto;padding:8px}.command-palette__results button{display:grid;grid-template-columns:80px 1fr 18px;gap:9px;align-items:center;padding:10px;color:#fff;text-align:left}.command-palette__results button:hover{background:rgba(255,255,255,.07)}.command-palette__results button>span{color:var(--shell-cyan);font-size:.64rem}.command-palette__results button>div{display:grid;gap:2px}.command-palette__results small{color:var(--shell-muted)}.command-palette__results p{padding:16px;color:var(--shell-muted);text-align:center}body.app-shell-enabled>.site-header,body.app-shell-enabled>#top,body.app-shell-enabled>.music-section,body.app-shell-enabled>.neon-footer{display:none}body.app-shell-enabled .ambient-canvas,body.app-shell-enabled .cursor-glow{display:none}body.app-shell-enabled .neon-grid-bg{opacity:.2}body.app-shell-enabled .scroll-meter{z-index:100}body.app-sidebar-collapsed .app-shell__body{grid-template-columns:64px minmax(0,1fr)}body.app-sidebar-collapsed .app-sidebar{padding-inline:7px;overflow-x:visible}body.app-sidebar-collapsed .app-sidebar__item{grid-template-columns:1fr;justify-items:center;padding:0}body.app-sidebar-collapsed .app-sidebar__item>b,body.app-sidebar-collapsed .app-sidebar__item>i,body.app-sidebar-collapsed .app-sidebar__submenu,body.app-sidebar-collapsed .app-sidebar__footer .app-sidebar__item>b{display:none}:where(.app-shell a,.app-shell button,.app-shell input,.app-shell select,.app-shell textarea):focus-visible{outline:3px solid var(--shell-cyan);outline-offset:3px}@media(max-width:1120px){.app-header{grid-template-columns:minmax(180px,.6fr) minmax(260px,1.2fr) minmax(180px,.55fr)}.app-shell__body{grid-template-columns:216px minmax(0,1fr)}.dashboard-quick-actions{grid-template-columns:repeat(2,minmax(0,1fr))}.app-workspace__platform .module-row-body{grid-template-columns:1fr}}@media(max-width:720px){.app-shell{position:fixed}.app-header{grid-template-columns:auto 1fr auto;gap:8px;min-height:58px;padding:0 10px}.app-brand strong,.app-action-button span,.app-user-button strong,.app-global-search>span:nth-child(2){display:none}.app-global-search{justify-content:center;width:42px;padding:0;border-color:transparent;background:transparent}.app-global-search kbd{display:none}.app-shell__body{grid-template-columns:1fr;height:calc(100dvh - 58px)}.app-sidebar{position:fixed;z-index:4;top:58px;bottom:0;left:0;width:min(280px,84vw);transform:translateX(-101%);transition:transform .2s ease;box-shadow:16px 0 36px rgba(0,0,0,.4)}body:not(.app-sidebar-collapsed) .app-sidebar{transform:translateX(0)}body:not(.app-sidebar-collapsed) .app-main{filter:brightness(.7)}.app-sidebar-collapsed .app-shell__body{grid-template-columns:1fr}.app-sidebar-collapsed .app-sidebar{transform:translateX(-101%)}.app-breadcrumb{padding-inline:16px}.app-page-header{align-items:flex-start;flex-direction:column;gap:12px;padding:18px 16px 14px}.app-workspace{padding:0 16px 82px}.dashboard-welcome{align-items:flex-start;flex-direction:column;padding:18px}.dashboard-clock{text-align:left}.dashboard-grid,.dashboard-panel--guide ol,.app-item-grid{grid-template-columns:1fr}.app-workspace__platform .platform-toolbar{top:0}}@media(prefers-reduced-motion:reduce){.app-sidebar,.dashboard-quick-actions button{transition:none}.dashboard-quick-actions button:hover{transform:none}}

/* Notification, API, Developer, Security and Smart Search */
.home-neon .notification-app,.home-neon .api-center-app,.home-neon .developer-app,.home-neon .security-app,.home-neon .smart-search-app{display:grid;gap:14px;min-width:0;color:#fff}.home-neon .notification-layout{display:grid;grid-template-columns:180px minmax(420px,1.25fr) minmax(250px,.6fr);min-height:610px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .notification-nav,.home-neon .notification-settings{padding:12px;background:rgba(22,5,30,.8)}.home-neon .notification-nav{display:flex;flex-direction:column;gap:5px;border-right:1px solid rgba(255,255,255,.14)}.home-neon .notification-nav>button{display:flex;justify-content:space-between;padding:9px;border:0;border-radius:4px;background:transparent;color:#cab8d2}.home-neon .notification-nav>button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .notification-nav section{display:grid;gap:7px;margin-top:auto;padding-top:10px;border-top:1px solid rgba(255,255,255,.13)}.home-neon .notification-nav section strong{color:#5bf4ec;font-size:.65rem}.home-neon .notification-nav section span{display:flex;gap:6px;color:#b29fb9;font-size:.64rem}.home-neon .notification-nav section i{width:8px;height:8px;border-radius:50%;background:#58f3a6}.home-neon .notification-inbox{min-width:0;padding:13px}.home-neon .notification-inbox>header,.home-neon .notification-settings>header{display:flex;justify-content:space-between;margin-bottom:10px}.home-neon .notification-inbox>header>div,.home-neon .notification-settings>header{display:grid}.home-neon .notification-inbox header span,.home-neon .notification-settings header span{color:#5af4ec;font-size:.63rem;font-weight:900}.home-neon .notification-inbox header button{border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff}.home-neon [data-notification-list]{display:grid;gap:7px}.home-neon [data-notification-item]{display:grid;grid-template-columns:10px 1fr auto;gap:9px;align-items:center;padding:11px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.035)}.home-neon [data-notification-item]>i{width:8px;height:8px;border-radius:50%;background:#ff3dd1;box-shadow:0 0 10px #ff3dd1}.home-neon [data-notification-item].read{opacity:.62}.home-neon [data-notification-item].read>i{background:#6a566f;box-shadow:none}.home-neon [data-notification-item]>div{display:grid}.home-neon [data-notification-item] p{margin:4px 0;color:#c8b7d0}.home-neon [data-notification-item] small{color:#96819f}.home-neon [data-notification-item]>button{padding:6px;border:1px solid rgba(255,255,255,.16);background:transparent;color:#fff}.home-neon .notification-settings{display:grid;align-content:start;gap:9px;border-left:1px solid rgba(255,255,255,.14)}.home-neon .notification-settings>label:not(.notification-check){display:grid;gap:5px;color:#b7a4c0;font-size:.67rem}.home-neon .notification-settings select,.home-neon .notification-settings input{min-height:40px;padding:0 8px;border:1px solid rgba(255,255,255,.17);background:#08010f;color:#fff}.home-neon .notification-check{display:flex;gap:7px;color:#cfbed6;font-size:.67rem}.home-neon .notification-check input{accent-color:#ff3dd1}.home-neon .notification-settings>p{color:#9f8aa8;font-size:.62rem;line-height:1.5}
.home-neon .api-layout{display:grid;grid-template-columns:220px minmax(430px,1.25fr) minmax(230px,.55fr);min-height:650px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .api-sidebar,.home-neon .api-docs{padding:12px;background:rgba(22,5,30,.8)}.home-neon .api-sidebar{border-right:1px solid rgba(255,255,255,.14)}.home-neon .api-sidebar label{display:grid;gap:5px;color:#b8a5c1;font-size:.66rem}.home-neon .api-sidebar input{min-height:39px;padding:0 8px;border:1px solid rgba(255,255,255,.17);background:#08010f;color:#fff}.home-neon [data-api-list]{display:grid;gap:6px;margin-top:9px}.home-neon [data-api-open]{display:grid;grid-template-columns:42px 1fr;gap:3px;width:100%;padding:8px;border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.025);color:#fff;text-align:left}.home-neon [data-api-open].active{border-color:#55f3ec}.home-neon [data-api-open] b{grid-row:1/3;align-self:center;padding:4px;border-radius:3px;color:#06150b;font-size:.56rem;text-align:center}.home-neon [data-api-open] b.get{background:#58f3a6}.home-neon [data-api-open] b.post{background:#f8ff6c}.home-neon [data-api-open] small{color:#97829f}.home-neon .api-playground{min-width:0;padding:13px}.home-neon .api-request-line{display:grid;grid-template-columns:85px 1fr auto;gap:6px}.home-neon .api-request-line select,.home-neon .api-request-line input{min-height:42px;padding:0 8px;border:1px solid rgba(255,255,255,.18);background:#08010f;color:#fff}.home-neon .api-tabs{display:flex;gap:5px;margin:10px 0 0}.home-neon .api-tabs button{padding:7px;border:1px solid rgba(255,255,255,.14);background:transparent;color:#c5b3cd}.home-neon .api-tabs button.active{border-color:#ff3dd1}.home-neon [data-api-body],.home-neon [data-api-response]{width:100%;min-height:190px;padding:11px;border:1px solid rgba(255,255,255,.15);background:#07010d;color:#e5d9e8;font:500 .72rem/1.55 Consolas,monospace}.home-neon [data-api-response]{max-height:260px;overflow:auto;white-space:pre-wrap}.home-neon .api-response-head{display:flex;justify-content:space-between;margin:10px 0 5px}.home-neon .api-response-head span{color:#5af4ec;font-size:.63rem}.home-neon .api-docs{border-left:1px solid rgba(255,255,255,.14)}.home-neon .api-docs>span{color:#5af4ec;font-size:.62rem;font-weight:900}.home-neon .api-docs h5{margin:5px 0;font-size:1.1rem}.home-neon .api-docs code{display:block;padding:8px;background:#07010d;color:#f8ff6b}.home-neon .api-docs p{color:#ad99b6;font-size:.67rem;line-height:1.55}.home-neon .api-docs section{margin:12px 0;padding:10px;border:1px solid rgba(255,255,255,.13)}
.home-neon .developer-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.home-neon .developer-metrics article{display:grid;gap:4px;padding:12px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.03)}.home-neon .developer-metrics span,.home-neon .developer-metrics small{color:#a994b3;font-size:.62rem}.home-neon .developer-metrics strong{color:#5bf4ec}.home-neon .developer-layout,.home-neon .security-layout{display:grid;grid-template-columns:190px minmax(0,1fr);min-height:560px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .developer-nav,.home-neon .security-nav{display:flex;flex-direction:column;gap:5px;padding:11px;border-right:1px solid rgba(255,255,255,.14);background:rgba(22,5,30,.8)}.home-neon .developer-nav>button,.home-neon .security-nav>button{padding:9px;border:0;border-radius:4px;background:transparent;color:#c9b7d1;text-align:left}.home-neon .developer-nav>button.active,.home-neon .security-nav>button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .developer-nav section{display:grid;gap:6px;margin-top:auto}.home-neon .developer-nav section strong{color:#5af4ec;font-size:.65rem}.home-neon .developer-nav a{color:#cdbbd5;font-size:.67rem}.home-neon .developer-workspace,.home-neon .security-workspace{min-width:0;padding:14px}.home-neon .dev-pane,.home-neon .security-pane{display:none}.home-neon .dev-pane.active,.home-neon .security-pane.active{display:block}.home-neon .repo-card{padding:18px;border:1px solid rgba(255,255,255,.15);background:radial-gradient(circle at 80% 20%,rgba(83,243,236,.16),transparent 30%),#0a0212}.home-neon .repo-card>span{color:#5af4ec;font-size:.62rem}.home-neon .repo-card h5{margin:6px 0;font-size:1.25rem}.home-neon .repo-card p{color:#ae9ab7}.home-neon .repo-card div{display:flex;gap:6px}.home-neon .repo-card b{padding:5px 7px;border:1px solid rgba(255,255,255,.14);border-radius:20px;font-size:.6rem}.home-neon .pipeline-view{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:16px;overflow:auto}.home-neon .pipeline-view>strong{display:none}.home-neon .pipeline-view span{display:grid;place-items:center;gap:5px;min-width:100px;color:#c8b6d0;font-size:.64rem}.home-neon .pipeline-view i{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#58f3a6;color:#06150b;font-style:normal;font-weight:900}.home-neon .commit-list{display:grid;gap:7px}.home-neon .commit-list article{display:grid;grid-template-columns:70px 1fr auto;gap:8px;align-items:center;padding:10px;border:1px solid rgba(255,255,255,.14)}.home-neon .commit-list code{color:#5af4ec}.home-neon .commit-list article>div{display:grid}.home-neon .commit-list span{color:#9b87a4;font-size:.62rem}.home-neon .commit-list a{color:#f8ff6c}.home-neon .release-board{display:grid;gap:7px}.home-neon .release-board article{display:grid;grid-template-columns:70px 1fr auto;padding:11px;border-left:3px solid #ff3dd1;background:rgba(255,255,255,.03)}.home-neon .release-board b{color:#5af4ec}.home-neon .release-board span{color:#58f3a6}.home-neon .dev-pane>pre,.home-neon .pipeline-log{padding:14px;border:1px solid rgba(255,255,255,.14);background:#07010d;color:#d9cddd}.home-neon .pipeline-log p{color:#58f3a6}
.home-neon .security-score{display:grid;place-items:center;width:105px;height:80px;border:1px solid #f8ff6c;background:rgba(248,255,108,.07)}.home-neon .security-score strong{color:#f8ff6c;font-size:1.5rem}.home-neon .security-score span{font-size:.62rem}.home-neon .security-alert{display:grid;grid-template-columns:10px 1fr;gap:9px;padding:11px;border-left:3px solid #f8ff6c;background:rgba(248,255,108,.05)}.home-neon .security-alert>i{width:8px;height:8px;margin-top:5px;border-radius:50%;background:#f8ff6c}.home-neon .security-alert>div{display:grid}.home-neon .security-alert span{color:#a994b3;font-size:.65rem}.home-neon .security-checks{display:grid;grid-template-columns:1fr 1fr;gap:8px}.home-neon .security-checks article{display:grid;grid-template-columns:10px 1fr;gap:8px;padding:12px;border:1px solid rgba(255,255,255,.14)}.home-neon .security-checks article>i{width:8px;height:8px;margin-top:5px;border-radius:50%}.home-neon .security-checks article.safe>i{background:#58f3a6}.home-neon .security-checks article.warn>i{background:#f8ff6c}.home-neon .security-checks article>div{display:grid}.home-neon .security-checks span{color:#a994b3}.home-neon .security-pane>button{margin-top:10px}.home-neon .login-history{display:grid;gap:7px}.home-neon .login-history article{display:grid;grid-template-columns:10px 1fr;gap:8px;padding:10px;border:1px solid rgba(255,255,255,.14)}.home-neon .login-history article i{width:8px;height:8px;margin-top:5px;border-radius:50%;background:#58f3a6}.home-neon .login-history article div{display:grid}.home-neon .login-history span{color:#9d89a6;font-size:.62rem}.home-neon .current-session{padding:14px;border:1px solid rgba(255,255,255,.15)}.home-neon .current-session>span{color:#5af4ec;font-size:.62rem}.home-neon .current-session p{color:#a994b3;overflow-wrap:anywhere}.home-neon .current-session button{padding:8px;border:1px solid #ff718b;background:transparent;color:#fff}.home-neon .permission-list{display:grid}.home-neon .permission-list label{display:grid;grid-template-columns:1fr 44px;align-items:center;padding:11px;border-bottom:1px solid rgba(255,255,255,.12)}.home-neon .permission-list input{position:absolute;opacity:0}.home-neon .permission-list i{position:relative;width:42px;height:22px;border-radius:20px;background:#2c1733}.home-neon .permission-list i:after{content:"";position:absolute;top:3px;left:3px;width:16px;height:16px;border-radius:50%;background:#a893b2}.home-neon .permission-list input:checked+i{background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .permission-list input:checked+i:after{left:23px;background:#fff}.home-neon [data-security-audit]{min-height:330px;padding:12px;border:1px solid rgba(255,255,255,.14);background:#07010d;color:#d8cbdd;white-space:pre-wrap}
.home-neon .smart-search-hero{display:grid;place-items:center;padding:28px;border:1px solid rgba(255,255,255,.2);background:radial-gradient(circle at 50% 20%,rgba(255,55,209,.2),transparent 35%),radial-gradient(circle at 80% 80%,rgba(82,243,236,.14),transparent 35%),#090211;text-align:center}.home-neon .smart-search-hero h4{margin:4px 0 15px;font-size:clamp(1.5rem,4vw,2.6rem);letter-spacing:0}.home-neon .smart-search-hero>label{display:grid;grid-template-columns:36px 1fr auto;align-items:center;width:min(760px,100%);min-height:54px;padding:0 10px;border:1px solid #ff3dd1;border-radius:6px;background:#07010d;box-shadow:0 0 25px rgba(255,55,209,.15)}.home-neon .smart-search-hero input{min-width:0;border:0;background:transparent;color:#fff;font:inherit;font-size:.95rem}.home-neon .smart-search-hero input:focus{outline:0}.home-neon .smart-search-hero kbd{padding:5px 7px;border:1px solid rgba(255,255,255,.18);border-radius:4px;color:#a994b3}.home-neon .smart-search-hero>div{display:flex;flex-wrap:wrap;justify-content:center;gap:6px;margin-top:10px}.home-neon .smart-search-hero>div button{padding:6px 9px;border:1px solid rgba(255,255,255,.16);border-radius:20px;background:transparent;color:#cbb9d3}.home-neon .smart-search-layout{display:grid;grid-template-columns:180px minmax(420px,1fr) minmax(230px,.55fr);min-height:570px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .smart-search-filters,.home-neon .smart-preview{padding:11px;background:rgba(22,5,30,.8)}.home-neon .smart-search-filters{display:flex;flex-direction:column;gap:5px;border-right:1px solid rgba(255,255,255,.14)}.home-neon .smart-search-filters>button{display:flex;justify-content:space-between;padding:9px;border:0;border-radius:4px;background:transparent;color:#cbb9d3}.home-neon .smart-search-filters>button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .smart-search-filters section{margin-top:auto}.home-neon .smart-search-filters section strong{color:#5af4ec;font-size:.63rem}.home-neon .smart-search-filters section p{color:#9985a2;font-size:.62rem}.home-neon .smart-results{min-width:0;padding:12px}.home-neon .smart-results>header{display:flex;justify-content:space-between;margin-bottom:9px}.home-neon .smart-results>header>div{display:grid}.home-neon .smart-results header span{color:#5af4ec;font-size:.62rem}.home-neon .smart-results select{border:1px solid rgba(255,255,255,.17);background:#08010f;color:#fff}.home-neon [data-smart-results]{display:grid;gap:6px}.home-neon .smart-result{display:grid;grid-template-columns:70px 1fr 20px;gap:9px;align-items:center;width:100%;padding:10px;border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.025);color:#fff;text-align:left}.home-neon .smart-result:hover{border-color:#55f3ec}.home-neon .smart-result>span{padding:5px;border-radius:4px;background:#25102d;color:#5af4ec;font-size:.57rem;text-align:center}.home-neon .smart-result>div{display:grid}.home-neon .smart-result p{margin:3px 0;color:#a994b3;font-size:.64rem}.home-neon .smart-empty{display:grid;place-items:center;min-height:330px;align-content:center;text-align:center}.home-neon .smart-empty>span{font-size:2rem;color:#5af4ec}.home-neon .smart-empty p{color:#a994b3}.home-neon .smart-preview{border-left:1px solid rgba(255,255,255,.14)}.home-neon .smart-preview header{color:#5af4ec}.home-neon [data-smart-preview]{margin-top:10px;padding:11px;border:1px solid rgba(255,255,255,.13)}.home-neon [data-smart-preview]>span{color:#5af4ec;font-size:.62rem}.home-neon [data-smart-preview] h5{margin:6px 0}.home-neon [data-smart-preview] p{color:#a994b3}
@media(max-width:1100px){.home-neon .notification-layout,.home-neon .api-layout,.home-neon .smart-search-layout{grid-template-columns:190px minmax(0,1fr)}.home-neon .notification-settings,.home-neon .api-docs,.home-neon .smart-preview{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.14);border-left:0}.home-neon .notification-settings{grid-template-columns:1fr 1fr}.home-neon .notification-settings header,.home-neon .notification-settings button,.home-neon .notification-settings p{grid-column:1/-1}}@media(max-width:720px){.home-neon .notification-layout,.home-neon .api-layout,.home-neon .developer-layout,.home-neon .security-layout,.home-neon .smart-search-layout{grid-template-columns:1fr}.home-neon .notification-nav,.home-neon .api-sidebar,.home-neon .developer-nav,.home-neon .security-nav,.home-neon .smart-search-filters{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}.home-neon .notification-settings{grid-template-columns:1fr}.home-neon .developer-metrics{grid-template-columns:1fr 1fr}.home-neon .pipeline-view{justify-content:flex-start}.home-neon .security-checks{grid-template-columns:1fr}.home-neon .api-request-line{grid-template-columns:72px 1fr}.home-neon .api-request-line button{grid-column:1/-1}.home-neon .smart-search-hero>label{grid-template-columns:30px 1fr}.home-neon .smart-search-hero kbd{display:none}}

/* Automation, Creator, Analytics, Store and Cloud */
.home-neon .automation-app,.home-neon .creator-app,.home-neon .analytics-app,.home-neon .store-app,.home-neon .cloud-app{display:grid;gap:14px;min-width:0;color:#fff}.home-neon .suite-hero{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px;border:1px solid rgba(255,255,255,.22);background:radial-gradient(circle at 9% 10%,rgba(255,54,208,.22),transparent 34%),radial-gradient(circle at 92% 85%,rgba(75,242,237,.17),transparent 36%),#090211}.home-neon .suite-hero h4{margin:3px 0 7px;font-size:clamp(1.35rem,3vw,2.15rem);letter-spacing:0}.home-neon .suite-hero>div>span{color:#d5c4dd}.home-neon .suite-badge{display:grid;grid-template-columns:12px 1fr;min-width:190px;padding:12px;border:1px solid rgba(84,244,237,.38);background:rgba(26,63,66,.28)}.home-neon .suite-badge i{grid-row:1/3;width:9px;height:9px;margin-top:5px;border-radius:50%;background:#58f3a6;box-shadow:0 0 10px #58f3a6}.home-neon .suite-badge strong{color:#5bf5ed}.home-neon .suite-badge span{color:#a791b1;font-size:.62rem}.home-neon .automation-layout,.home-neon .creator-layout{display:grid;grid-template-columns:210px minmax(400px,1.35fr) minmax(260px,.7fr);min-height:630px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .automation-steps,.home-neon .creator-nav,.home-neon .automation-results,.home-neon .creator-inspector{padding:13px;background:rgba(22,5,30,.8)}.home-neon .automation-steps,.home-neon .creator-nav{border-right:1px solid rgba(255,255,255,.14)}.home-neon .automation-steps>strong,.home-neon .creator-nav section>strong{color:#5bf5ed;font-size:.68rem;text-transform:uppercase}.home-neon .automation-steps label{display:grid;grid-template-columns:30px 1fr;gap:7px;align-items:center;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.1)}.home-neon .automation-steps label>span{grid-row:1/3;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#25102d;color:#5af4ec;font-weight:900}.home-neon .automation-steps input{position:absolute;opacity:0}.home-neon .automation-steps i{position:relative;width:34px;height:18px;border-radius:16px;background:#2b1532}.home-neon .automation-steps i:after{content:"";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:50%;background:#a58faf}.home-neon .automation-steps input:checked+i{background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .automation-steps input:checked+i:after{left:19px;background:#fff}.home-neon .automation-steps b{font-size:.68rem}.home-neon .automation-workspace,.home-neon .creator-workspace{min-width:0;padding:15px}.home-neon .suite-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}.home-neon .suite-form-grid label:first-child{grid-column:1/-1}.home-neon .suite-form-grid label,.home-neon .creator-workspace>label,.home-neon .creator-fields label{display:grid;gap:5px;color:#baa7c3;font-size:.68rem}.home-neon .suite-form-grid textarea,.home-neon .suite-form-grid select,.home-neon .creator-workspace input,.home-neon .creator-fields input,.home-neon .creator-fields select{width:100%;min-height:42px;padding:9px;border:1px solid rgba(255,255,255,.18);border-radius:4px;background:#08010f;color:#fff}.home-neon .suite-actions{display:flex;gap:7px;margin:12px 0}.home-neon .automation-progress{position:relative;display:flex;align-items:center;height:38px;overflow:hidden;border:1px solid rgba(255,255,255,.15);background:#0b0213}.home-neon .automation-progress i{position:absolute;inset:0 auto 0 0;width:0;background:linear-gradient(90deg,rgba(255,55,209,.28),rgba(82,242,235,.2));transition:.5s}.home-neon .automation-progress span{position:relative;padding:0 10px;color:#d1c1d8;font-size:.66rem}.home-neon .automation-results,.home-neon .creator-inspector{border-left:1px solid rgba(255,255,255,.14)}.home-neon .automation-results header{display:flex;justify-content:space-between}.home-neon .automation-results header button{border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff}.home-neon .automation-results pre,.home-neon [data-creator-output]{min-height:500px;max-height:570px;padding:11px;overflow:auto;border:1px solid rgba(255,255,255,.14);background:#07010d;color:#e6dbe9;font:500 .73rem/1.65 "Be Vietnam Pro",sans-serif;white-space:pre-wrap}.home-neon .creator-score{display:grid;place-items:center;width:96px;height:82px;border:1px solid #f7ff6c;background:rgba(246,255,105,.07)}.home-neon .creator-score strong{color:#f8ff6c;font-size:1.6rem}.home-neon .creator-score span{font-size:.62rem}.home-neon .creator-nav{display:flex;flex-direction:column;gap:5px}.home-neon .creator-nav>button{padding:9px;border:0;border-radius:4px;background:transparent;color:#cbb9d3;text-align:left}.home-neon .creator-nav>button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .creator-nav section{display:grid;gap:7px;margin-top:auto}.home-neon .creator-nav section label{display:flex;gap:6px;color:#b9a6c2;font-size:.66rem}.home-neon .creator-nav section input{accent-color:#ff3dd1}.home-neon .creator-fields{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:9px 0}.home-neon .creator-output-tabs{display:flex;gap:5px;margin:11px 0 0}.home-neon .creator-output-tabs button{padding:7px;border:1px solid rgba(255,255,255,.15);background:transparent;color:#c8b6d0}.home-neon .creator-output-tabs button.active{border-color:#55f3ec;color:#fff}.home-neon .thumbnail-canvas{display:grid;place-items:center;align-content:center;aspect-ratio:16/9;padding:12px;border:2px solid #ff3dd1;background:radial-gradient(circle at 25% 30%,rgba(76,241,236,.42),transparent 25%),linear-gradient(135deg,#34083d,#09010f);text-align:center}.home-neon .thumbnail-canvas span{font-size:1.6rem;font-weight:900}.home-neon .thumbnail-canvas strong{font-size:1rem}.home-neon .thumbnail-canvas small{color:#5df5ed}.home-neon .creator-keywords{margin:12px 0}.home-neon .creator-keywords>strong{color:#f7ff6c;font-size:.68rem}.home-neon .creator-keywords>div{display:flex;flex-wrap:wrap;gap:5px;margin-top:6px}.home-neon .creator-keywords span{padding:5px;border:1px solid rgba(255,255,255,.15);border-radius:20px;color:#5df4ec;font-size:.62rem}
.home-neon .analytics-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.home-neon .analytics-metrics article{display:grid;gap:4px;padding:13px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.03)}.home-neon .analytics-metrics span,.home-neon .analytics-metrics small{color:#a994b3;font-size:.63rem}.home-neon .analytics-metrics strong{color:#5bf4ec;font-size:1.25rem}.home-neon .analytics-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:9px}.home-neon .analytics-grid>section{padding:13px;border:1px solid rgba(255,255,255,.15);background:#090211}.home-neon .analytics-grid header{display:flex;justify-content:space-between}.home-neon .analytics-grid header span{color:#5af4ec;font-size:.62rem}.home-neon .analytics-bars{display:flex;align-items:end;gap:10px;height:220px;padding-top:20px}.home-neon .analytics-bars i{position:relative;flex:1;height:var(--bar);min-width:20px;background:linear-gradient(180deg,#55f3ec,#ff3dd1);box-shadow:0 0 18px rgba(255,55,209,.18)}.home-neon .analytics-bars b{position:absolute;top:calc(100% + 6px);width:100%;color:#a994b3;font-size:.6rem;text-align:center}.home-neon .analytics-device{display:grid;gap:7px;margin-top:12px}.home-neon .analytics-device span{display:flex;justify-content:space-between;padding:8px;border-bottom:1px solid rgba(255,255,255,.1);color:#cbb9d3}.home-neon .analytics-device b{color:#5bf4ec}.home-neon .analytics-rings{display:flex;justify-content:space-around;gap:10px;padding:25px 0}.home-neon .analytics-rings span{display:grid;place-items:center;width:92px;height:92px;border-radius:50%;background:conic-gradient(#55f3ec var(--ring),#28132f 0);box-shadow:inset 0 0 0 12px #0b0213;color:#b9a6c2;font-size:.62rem}.home-neon .analytics-rings b{color:#fff;font-size:1rem}.home-neon .analytics-events{display:grid;gap:5px;max-height:220px;overflow:auto}.home-neon .analytics-events p{margin:0;padding:7px;border-left:2px solid #ff3dd1;background:rgba(255,255,255,.03);font-size:.65rem}
.home-neon .store-cart-button{padding:10px 13px;border:1px solid #f7ff6c;background:rgba(247,255,108,.08);color:#fff}.home-neon .store-cart-button b{display:inline-grid;place-items:center;min-width:22px;height:22px;border-radius:50%;background:#f8ff6c;color:#170019}.home-neon .store-toolbar{display:flex;justify-content:space-between;gap:10px;padding:9px;border:1px solid rgba(255,255,255,.16);background:#090211}.home-neon .store-toolbar input{min-width:250px;padding:0 10px;border:1px solid rgba(255,255,255,.18);background:#08010f;color:#fff}.home-neon .store-toolbar>div{display:flex;gap:5px}.home-neon .store-toolbar button{padding:8px;border:1px solid transparent;background:transparent;color:#c8b6d0}.home-neon .store-toolbar button.active{border-color:#ff3dd1;color:#fff}.home-neon .store-layout{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.55fr);gap:10px}.home-neon .product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}.home-neon .product-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid rgba(255,255,255,.16);background:#0a0212}.home-neon .product-art{display:grid;place-items:center;aspect-ratio:16/9;background:radial-gradient(circle at 25% 25%,rgba(79,242,237,.45),transparent 25%),linear-gradient(135deg,#390943,#09010f)}.home-neon .product-art span{font-size:2rem;font-weight:900}.home-neon .product-art b{color:#5af4ec;font-size:.6rem;text-transform:uppercase}.home-neon .product-card>div:nth-child(2){display:grid;gap:5px;padding:12px}.home-neon .product-card>div:nth-child(2)>span{color:#5af4ec;font-size:.6rem;font-weight:900}.home-neon .product-card h5{margin:0;font-size:1rem}.home-neon .product-card p{color:#aa96b4;font-size:.67rem}.home-neon .product-card>button{margin:auto 10px 10px}.home-neon .cart-panel{padding:12px;border:1px solid rgba(255,255,255,.16);background:#090211}.home-neon .cart-panel header{display:flex;justify-content:space-between}.home-neon .cart-panel header>div{display:grid}.home-neon .cart-panel header span{color:#5af4ec;font-size:.62rem}.home-neon .cart-panel header button{border:1px solid rgba(255,255,255,.17);background:transparent;color:#fff}.home-neon [data-cart-items]{display:grid;gap:6px;margin:11px 0;max-height:230px;overflow:auto}.home-neon [data-cart-items] article{display:grid;grid-template-columns:1fr auto;gap:6px;padding:8px;border:1px solid rgba(255,255,255,.12)}.home-neon [data-cart-items] article div{display:grid}.home-neon [data-cart-items] span{color:#a994b3;font-size:.62rem}.home-neon [data-cart-items] button{border:0;background:transparent;color:#ff718b}.home-neon .cart-total{display:flex;justify-content:space-between;padding:10px 0;border-top:1px solid rgba(255,255,255,.15)}.home-neon .cart-total strong{color:#f8ff6c}.home-neon .checkout-form{display:grid;gap:6px}.home-neon .checkout-form input{min-height:38px;padding:0 8px;border:1px solid rgba(255,255,255,.17);background:#08010f;color:#fff}.home-neon .checkout-form small{color:#a38faa;line-height:1.5}
.home-neon .cloud-toolbar{display:grid;grid-template-columns:auto auto auto 1fr;gap:7px}.home-neon .cloud-toolbar label{position:relative;overflow:hidden}.home-neon .cloud-toolbar label input{position:absolute;width:1px;height:1px;opacity:0}.home-neon .cloud-toolbar>input{min-height:42px;padding:0 10px;border:1px solid rgba(255,255,255,.18);background:#08010f;color:#fff}.home-neon .cloud-layout{display:grid;grid-template-columns:190px minmax(430px,1fr) minmax(230px,.5fr);min-height:580px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .cloud-nav,.home-neon .cloud-preview{padding:12px;background:rgba(22,5,30,.8)}.home-neon .cloud-nav{display:flex;flex-direction:column;gap:5px;border-right:1px solid rgba(255,255,255,.14)}.home-neon .cloud-nav button{padding:9px;border:0;background:transparent;color:#cbb9d3;text-align:left}.home-neon .cloud-nav button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .cloud-nav section{display:grid;gap:4px;margin-top:8px;padding-top:8px;border-top:1px solid rgba(255,255,255,.12)}.home-neon .cloud-nav section strong{color:#5af4ec;font-size:.65rem}.home-neon .cloud-quota{display:grid;gap:5px;margin-top:auto}.home-neon .cloud-quota span,.home-neon .cloud-quota small{color:#a994b3;font-size:.6rem}.home-neon .cloud-quota i{height:6px;background:rgba(255,255,255,.12)}.home-neon .cloud-quota b{display:block;height:100%;background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .cloud-files{min-width:0;padding:12px}.home-neon .cloud-file-head,.home-neon .cloud-file-row{display:grid;grid-template-columns:1.4fr 1fr .7fr .7fr 20px;gap:8px;align-items:center}.home-neon .cloud-file-head{padding:8px;color:#9f8ba9;font-size:.61rem}.home-neon .cloud-file-row{width:100%;padding:10px;border:0;border-top:1px solid rgba(255,255,255,.1);background:transparent;color:#cdbbd5;text-align:left}.home-neon .cloud-file-row:hover{background:rgba(255,255,255,.04)}.home-neon .cloud-file-row span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.64rem}.home-neon .cloud-preview{border-left:1px solid rgba(255,255,255,.14)}.home-neon .cloud-preview header{display:flex;justify-content:space-between}.home-neon .cloud-preview header button{border:0;background:transparent;color:#fff}.home-neon .cloud-preview pre{min-height:420px;padding:10px;overflow:auto;border:1px solid rgba(255,255,255,.13);background:#07010d;color:#d5c7db;white-space:pre-wrap}.home-neon .cloud-preview>button{width:100%}
@media(max-width:1120px){.home-neon .automation-layout,.home-neon .creator-layout{grid-template-columns:190px minmax(0,1fr)}.home-neon .automation-results,.home-neon .creator-inspector{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.14);border-left:0}.home-neon .automation-results pre{min-height:240px}.home-neon .product-grid{grid-template-columns:repeat(2,1fr)}.home-neon .cloud-layout{grid-template-columns:180px minmax(0,1fr)}.home-neon .cloud-preview{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.14);border-left:0}.home-neon .cloud-preview pre{min-height:220px}}@media(max-width:720px){.home-neon .suite-hero{align-items:stretch;flex-direction:column}.home-neon .suite-badge{min-width:0}.home-neon .automation-layout,.home-neon .creator-layout,.home-neon .store-layout,.home-neon .cloud-layout{grid-template-columns:1fr}.home-neon .automation-steps,.home-neon .creator-nav,.home-neon .cloud-nav{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}.home-neon .analytics-metrics,.home-neon .analytics-grid{grid-template-columns:1fr 1fr}.home-neon .product-grid{grid-template-columns:1fr}.home-neon .store-toolbar,.home-neon .cloud-toolbar{grid-template-columns:1fr 1fr}.home-neon .store-toolbar{align-items:stretch;flex-direction:column}.home-neon .store-toolbar input{min-width:0;min-height:40px}.home-neon .cloud-toolbar>input{grid-column:1/-1}.home-neon .cloud-file-head{display:none}.home-neon .cloud-file-row{grid-template-columns:1fr auto}.home-neon .cloud-file-row span:nth-of-type(n+2){display:none}}@media(max-width:520px){.home-neon .analytics-metrics,.home-neon .analytics-grid{grid-template-columns:1fr}.home-neon .suite-form-grid,.home-neon .creator-fields{grid-template-columns:1fr}.home-neon .suite-form-grid label:first-child{grid-column:auto}}

/* Learning, Community, User Dashboard and Admin */
.home-neon .learning-center-app,.home-neon .community-center-app,.home-neon .user-dashboard-app,.home-neon .admin-panel-app{display:grid;gap:14px;min-width:0;color:#fff}.home-neon .learning-hero,.home-neon .community-hero,.home-neon .user-cover,.home-neon .admin-hero{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px;border:1px solid rgba(255,255,255,.22);background:radial-gradient(circle at 9% 10%,rgba(255,55,207,.22),transparent 34%),radial-gradient(circle at 92% 85%,rgba(73,242,236,.17),transparent 36%),#090211}.home-neon .learning-hero h4,.home-neon .community-hero h4,.home-neon .user-cover h4,.home-neon .admin-hero h4{margin:3px 0 7px;font-size:clamp(1.35rem,3vw,2.15rem);letter-spacing:0}.home-neon .learning-hero>div>span,.home-neon .community-hero>div>span,.home-neon .user-cover>div>span,.home-neon .admin-hero>div>span{color:#d5c4dd}.home-neon .learning-level,.home-neon .admin-security{display:grid;gap:4px;min-width:200px;padding:13px;border:1px solid rgba(80,245,237,.4);background:rgba(24,61,65,.3)}.home-neon .learning-level span,.home-neon .admin-security span{color:#a793b1;font-size:.65rem}.home-neon .learning-level strong,.home-neon .admin-security strong{color:#5bf5ed}.home-neon .learning-level i{position:relative;height:6px;overflow:hidden;border-radius:5px;background:rgba(255,255,255,.13)}.home-neon .learning-level i:after{content:"";position:absolute;inset:0 auto 0 0;width:var(--learn);background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .learning-layout{display:grid;grid-template-columns:minmax(210px,.5fr) minmax(390px,1.35fr) minmax(210px,.48fr);min-height:650px;border:1px solid rgba(255,255,255,.2);background:#08010e}.home-neon .course-sidebar,.home-neon .learning-plan{padding:13px;background:rgba(22,5,30,.8)}.home-neon .course-sidebar{border-right:1px solid rgba(255,255,255,.14)}.home-neon .course-sidebar>label{display:grid;gap:5px;color:#baa8c3;font-size:.68rem}.home-neon .course-sidebar input{min-height:40px;padding:0 9px;border:1px solid rgba(255,255,255,.2);border-radius:4px;background:#08010f;color:#fff}.home-neon [data-course-list]{display:grid;gap:7px;margin-top:10px}.home-neon [data-course-open]{display:grid;gap:3px;width:100%;padding:10px;border:1px solid rgba(255,255,255,.14);border-radius:5px;background:rgba(255,255,255,.03);color:#fff;text-align:left}.home-neon [data-course-open].active,.home-neon [data-course-open]:hover{border-color:#ff3dd1;background:rgba(255,56,208,.1)}.home-neon [data-course-open] span{color:#59f3ec;font-size:.6rem}.home-neon [data-course-open] small{color:#9c89a6}.home-neon .course-sidebar>section{margin-top:15px}.home-neon .course-sidebar>section>strong{color:#f7ff6b;font-size:.7rem}.home-neon .course-sidebar>section>div{display:grid;grid-template-columns:repeat(3,1fr);gap:4px;margin-top:7px}.home-neon .course-sidebar>section span{display:grid;padding:6px 2px;border:1px solid rgba(255,255,255,.12);color:#9885a2;font-size:.54rem;text-align:center}.home-neon .course-sidebar>section b{color:#5cf5ed;font-size:.82rem}.home-neon .learning-workspace{min-width:0;padding:15px}.home-neon .learning-course-head,.home-neon .learning-plan header{display:flex;justify-content:space-between;align-items:center}.home-neon .learning-course-head span{color:#59f4ec;font-size:.64rem;font-weight:900;text-transform:uppercase}.home-neon .learning-course-head h5{margin:3px 0;font-size:1.3rem}.home-neon .learning-course-head button{padding:8px;border:1px solid #f6ff6b;background:transparent;color:#fff}.home-neon .learning-tabs{display:flex;gap:5px;margin:14px 0}.home-neon .learning-tabs button{padding:8px 11px;border:1px solid rgba(255,255,255,.16);border-radius:4px;background:transparent;color:#cbb8d3}.home-neon .learning-tabs button.active{border-color:#ff3dd1;color:#fff}.home-neon .learning-pane{display:none}.home-neon .learning-pane.active{display:block}.home-neon .lesson-list{display:grid;gap:7px}.home-neon .lesson-list article{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:9px;align-items:center;padding:10px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.025)}.home-neon .lesson-list article>span{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#25102d;color:#59f4ec;font-weight:900}.home-neon .lesson-list article.done{border-color:rgba(86,244,167,.45)}.home-neon .lesson-list article.done>span{background:#58f3a6;color:#06150b}.home-neon .lesson-list article>div{display:grid}.home-neon .lesson-list small{color:#9c88a6}.home-neon .lesson-list button{padding:7px;border:1px solid #55f3ec;background:transparent;color:#fff}.home-neon [data-learning-quiz]{display:grid;gap:9px}.home-neon [data-learning-quiz] fieldset{display:grid;gap:6px;padding:10px;border:1px solid rgba(255,255,255,.15)}.home-neon [data-learning-quiz] legend{color:#5df5ed;font-weight:800}.home-neon [data-learning-quiz] label{display:flex;gap:7px;color:#d3c3da}.home-neon [data-learning-quiz] input{accent-color:#ff3dd1}.home-neon [data-learning-quiz-result]{margin-top:10px;padding:12px;border-left:3px solid #f8ff6c;background:rgba(255,255,255,.035)}.home-neon [data-learning-notes]{width:100%;min-height:360px;padding:12px;border:1px solid rgba(255,255,255,.18);background:#08010f;color:#fff;line-height:1.6}.home-neon .learning-pane[data-learning-pane=notes]>div{display:flex;gap:7px;margin-top:8px}.home-neon .learning-plan{border-left:1px solid rgba(255,255,255,.14)}.home-neon .learning-plan header{display:grid;gap:2px}.home-neon .learning-plan header span{color:#5af4ec;font-size:.65rem;font-weight:900}.home-neon .learning-focus{display:grid;gap:6px;margin:13px 0;padding:11px;border:1px solid rgba(255,255,255,.14)}.home-neon .learning-focus span{color:#9e8aa8;font-size:.62rem}.home-neon .learning-focus i{height:6px;background:rgba(255,255,255,.12)}.home-neon .learning-focus i b{display:block;height:100%;background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .learning-next{display:grid;gap:6px}.home-neon .learning-next>strong{color:#f8ff6c;font-size:.7rem}.home-neon .learning-next p{display:grid;grid-template-columns:26px 1fr;gap:7px;align-items:center;margin:0;padding:7px;background:rgba(255,255,255,.03);font-size:.67rem}.home-neon .learning-next p span{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:#25102d;color:#58f3ec}.home-neon .learning-plan>button{width:100%;margin-top:12px;padding:8px;border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff}
.home-neon .community-layout{display:grid;grid-template-columns:190px minmax(420px,1.3fr) minmax(230px,.55fr);gap:12px}.home-neon .community-nav,.home-neon .community-side>section,.home-neon .community-composer,.home-neon .community-post{border:1px solid rgba(255,255,255,.16);background:rgba(10,2,17,.88)}.home-neon .community-nav{display:flex;flex-direction:column;gap:6px;padding:11px}.home-neon .community-nav>button,.home-neon .community-nav section button{padding:9px;border:0;border-radius:4px;background:transparent;color:#d1c0d8;text-align:left}.home-neon .community-nav>button.active,.home-neon .community-nav>button:hover{background:rgba(255,57,208,.14);color:#fff}.home-neon .community-nav section{display:grid;gap:3px;padding-top:10px;border-top:1px solid rgba(255,255,255,.13)}.home-neon .community-nav section strong{color:#5bf5ed;font-size:.68rem}.home-neon .community-online{display:grid;gap:4px;margin-top:auto;padding:10px;border:1px solid rgba(84,243,236,.32);background:rgba(29,65,69,.2)}.home-neon .community-online i{width:9px;height:9px;border-radius:50%;background:#58f3a6;box-shadow:0 0 10px #58f3a6}.home-neon .community-online span{color:#a893b2;font-size:.62rem}.home-neon .community-online a{color:#5cf5ed;font-size:.68rem}.home-neon .community-feed{display:grid;align-content:start;gap:10px}.home-neon .community-composer{padding:11px}.home-neon .community-composer>div{display:grid;grid-template-columns:38px 1fr;gap:8px}.home-neon .community-composer>div>span,.home-neon .community-post header>span{display:grid;place-items:center;width:38px;height:38px;border-radius:6px;background:linear-gradient(135deg,#ff3dd1,#55f3ec);color:#140018;font-size:.7rem;font-weight:900}.home-neon .community-composer textarea{width:100%;padding:9px;border:1px solid rgba(255,255,255,.18);border-radius:5px;background:#08010f;color:#fff}.home-neon .community-composer footer{display:flex;justify-content:flex-end;gap:8px;margin-top:8px}.home-neon .community-composer footer label{display:flex;align-items:center;gap:6px;color:#a995b2;font-size:.62rem}.home-neon .community-composer select{min-height:36px;border:1px solid rgba(255,255,255,.18);background:#090211;color:#fff}.home-neon [data-community-posts]{display:grid;gap:9px}.home-neon .community-post{padding:12px}.home-neon .community-post header{display:grid;grid-template-columns:38px 1fr auto;gap:8px}.home-neon .community-post header div{display:grid}.home-neon .community-post header small{color:#9d89a7}.home-neon .community-post header button{border:0;background:transparent;color:#b7a4c0}.home-neon .community-post>p{line-height:1.65;color:#e1d5e6}.home-neon .post-actions{display:flex;gap:7px;padding-top:8px;border-top:1px solid rgba(255,255,255,.12)}.home-neon .post-actions button{padding:7px 9px;border:1px solid rgba(255,255,255,.14);border-radius:4px;background:transparent;color:#c6b5ce}.home-neon .post-actions button.active{color:#ff4fd7}.home-neon .post-comments{display:grid;gap:5px;margin-top:8px}.home-neon .post-comments>p{display:grid;margin:0;padding:7px;background:rgba(255,255,255,.035);font-size:.66rem}.home-neon .post-comments form{display:grid;grid-template-columns:1fr auto;gap:5px}.home-neon .post-comments input{min-height:36px;padding:0 8px;border:1px solid rgba(255,255,255,.17);background:#08010f;color:#fff}.home-neon .post-comments form button{border:1px solid #54f3ec;background:transparent;color:#fff}.home-neon .community-side{display:grid;align-content:start;gap:10px}.home-neon .community-side>section{padding:11px}.home-neon .community-side header span{color:#5bf4ec;font-size:.68rem;font-weight:900}.home-neon .community-side article{display:grid;grid-template-columns:24px 32px 1fr auto;gap:6px;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.1)}.home-neon .community-side article>span{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:#25102d;color:#5af4ec}.home-neon .community-side article>div{display:grid}.home-neon .community-side article small{color:#9d89a7}.home-neon .community-side article button{padding:5px;border:1px solid rgba(255,255,255,.16);background:transparent;color:#fff;font-size:.58rem}.home-neon .community-side article button.active{border-color:#58f3a6;color:#58f3a6}.home-neon .community-guidelines p{color:#ad99b6;font-size:.67rem;line-height:1.5}
.home-neon .user-cover{justify-content:flex-start}.home-neon .user-avatar{display:grid;place-items:center;width:82px;height:82px;overflow:hidden;border:2px solid #ff3dd1;border-radius:12px;background:linear-gradient(135deg,#ff3dd1,#55f3ec);color:#140018;font-size:1.35rem;font-weight:900;box-shadow:0 0 24px rgba(255,55,209,.3)}.home-neon .user-avatar img{width:100%;height:100%;object-fit:cover}.home-neon .user-cover>button{margin-left:auto;padding:9px;border:1px solid #55f3ec;background:transparent;color:#fff}.home-neon .user-stat-row{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(255,255,255,.16)}.home-neon .user-stat-row span{display:grid;padding:10px;border-right:1px solid rgba(255,255,255,.13);color:#a995b3;font-size:.62rem;text-align:center}.home-neon .user-stat-row b{color:#5cf5ed;font-size:1rem}.home-neon .user-dashboard-layout{display:grid;grid-template-columns:200px minmax(0,1fr);min-height:540px;border:1px solid rgba(255,255,255,.18);background:#08010e}.home-neon .user-menu{display:flex;flex-direction:column;gap:5px;padding:11px;border-right:1px solid rgba(255,255,255,.14);background:rgba(22,5,30,.8)}.home-neon .user-menu button{padding:10px;border:0;border-radius:4px;background:transparent;color:#cab8d2;text-align:left}.home-neon .user-menu button.active{background:rgba(255,55,209,.14);color:#fff}.home-neon .user-menu .danger{margin-top:auto;color:#ff718b}.home-neon .user-content{padding:16px}.home-neon .user-pane{display:none}.home-neon .user-pane.active{display:block}.home-neon .user-pane h5{margin:0 0 12px;font-size:1.2rem}.home-neon .user-pane-head{display:flex;justify-content:space-between}.home-neon .user-pane-head span{color:#5af4ec;font-size:.65rem;font-weight:900}.home-neon .user-pane-head h5{margin:3px 0}.home-neon .user-pane-head label{position:relative;overflow:hidden}.home-neon .user-pane-head input[type=file]{position:absolute;width:1px;height:1px;opacity:0}.home-neon .user-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:14px 0}.home-neon .user-form-grid label{display:grid;gap:5px;color:#baa7c3;font-size:.68rem}.home-neon .user-form-grid input,.home-neon .user-form-grid textarea{width:100%;min-height:42px;padding:9px;border:1px solid rgba(255,255,255,.18);background:#08010f;color:#fff}.home-neon .user-saved-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.home-neon .user-saved-grid article{padding:13px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.03)}.home-neon .user-saved-grid span{color:#5af4ec;font-size:.62rem}.home-neon .user-saved-grid p{color:#a995b3}.home-neon .user-activity-list{display:grid;gap:6px}.home-neon .user-activity-list p{display:grid;grid-template-columns:10px 1fr;gap:8px;padding:9px;margin:0;background:rgba(255,255,255,.035);color:#cbb9d3}.home-neon .user-activity-list i{width:8px;height:8px;border-radius:50%;background:#55f3ec}.home-neon .user-toggle{display:grid;grid-template-columns:1fr 46px;align-items:center;gap:10px;padding:11px;border-bottom:1px solid rgba(255,255,255,.12)}.home-neon .user-toggle input{position:absolute;opacity:0}.home-neon .user-toggle i{position:relative;width:44px;height:24px;border-radius:20px;background:#2a1531}.home-neon .user-toggle i:after{content:"";position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#baa8c3;transition:.2s}.home-neon .user-toggle input:checked+i{background:linear-gradient(90deg,#ff3dd1,#55f3ec)}.home-neon .user-toggle input:checked+i:after{left:23px;background:#fff}
.home-neon .admin-security{grid-template-columns:12px 1fr}.home-neon .admin-security i{grid-row:1/3;width:10px;height:10px;margin-top:5px;border-radius:50%;background:#f8ff6c;box-shadow:0 0 12px #f8ff6c}.home-neon .admin-toolbar{display:flex;justify-content:space-between;gap:10px;padding:9px;border:1px solid rgba(255,255,255,.17);background:#090211}.home-neon .admin-tabs{display:flex;gap:5px;overflow:auto}.home-neon .admin-tabs button{flex:0 0 auto;padding:8px 10px;border:1px solid transparent;background:transparent;color:#c7b5cf}.home-neon .admin-tabs button.active{border-color:#ff3dd1;color:#fff}.home-neon .admin-status{padding:9px;border-left:3px solid #55f3ec;background:rgba(255,255,255,.035);color:#cbb9d3}.home-neon .admin-pane{display:none}.home-neon .admin-pane.active{display:block}.home-neon .admin-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}.home-neon .admin-metrics article{display:grid;gap:4px;padding:13px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.03)}.home-neon .admin-metrics span,.home-neon .admin-metrics small{color:#a995b3;font-size:.64rem}.home-neon .admin-metrics strong{color:#5bf4ec;font-size:1.35rem}.home-neon .admin-dashboard-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:9px}.home-neon .admin-dashboard-grid>section{padding:12px;border:1px solid rgba(255,255,255,.15);background:#090211}.home-neon .admin-dashboard-grid header{display:flex;justify-content:space-between}.home-neon .admin-dashboard-grid header span{color:#5af4ec;font-size:.62rem}.home-neon [data-admin-events]{display:grid;gap:5px;margin-top:9px;max-height:260px;overflow:auto}.home-neon [data-admin-events] p{display:grid;grid-template-columns:9px 1fr auto;gap:7px;margin:0;padding:7px;background:rgba(255,255,255,.03);font-size:.65rem}.home-neon [data-admin-events] i,.home-neon .admin-service i{width:7px;height:7px;border-radius:50%;background:#ffcf57}.home-neon [data-admin-events] small{color:#9b87a5}.home-neon .admin-service{display:grid;grid-template-columns:10px 1fr auto;gap:7px;align-items:center;padding:8px;border-bottom:1px solid rgba(255,255,255,.1)}.home-neon .admin-service.online i{background:#55f3a6;box-shadow:0 0 9px #55f3a6}.home-neon .admin-service b{color:#a995b3;font-size:.62rem}.home-neon .admin-placeholder{display:grid;place-items:center;min-height:390px;padding:25px;text-align:center}.home-neon .admin-placeholder>span{color:#5bf4ec;font-weight:900}.home-neon .admin-placeholder strong{margin:8px 0;font-size:1.25rem}.home-neon .admin-placeholder p{max-width:540px;color:#ad99b6}
@media(max-width:1100px){.home-neon .learning-layout{grid-template-columns:200px minmax(0,1fr)}.home-neon .learning-plan{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.14);border-left:0}.home-neon .community-layout{grid-template-columns:180px minmax(0,1fr)}.home-neon .community-side{grid-column:1/-1;grid-template-columns:1fr 1fr}.home-neon .admin-metrics{grid-template-columns:repeat(2,1fr)}}@media(max-width:720px){.home-neon .learning-hero,.home-neon .community-hero,.home-neon .user-cover,.home-neon .admin-hero{align-items:stretch;flex-direction:column}.home-neon .learning-level,.home-neon .admin-security{min-width:0}.home-neon .learning-layout,.home-neon .community-layout,.home-neon .user-dashboard-layout{grid-template-columns:1fr}.home-neon .course-sidebar,.home-neon .community-nav,.home-neon .user-menu{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}.home-neon .community-side{display:grid;grid-template-columns:1fr}.home-neon .user-avatar{width:68px;height:68px}.home-neon .user-cover>button{margin-left:0}.home-neon .user-stat-row,.home-neon .admin-metrics{grid-template-columns:repeat(2,1fr)}.home-neon .user-form-grid,.home-neon .user-saved-grid,.home-neon .admin-dashboard-grid{grid-template-columns:1fr}.home-neon .admin-toolbar{align-items:stretch;flex-direction:column}}

/* Project Center and Knowledge Wiki */
.home-neon .project-center-app,.home-neon .knowledge-center-app{display:grid;gap:14px;min-width:0;color:#fff}.home-neon .project-center-hero,.home-neon .wiki-hero{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px;border:1px solid rgba(255,255,255,.22);background:radial-gradient(circle at 8% 10%,rgba(255,50,207,.22),transparent 34%),radial-gradient(circle at 92% 85%,rgba(73,241,236,.17),transparent 36%),#090211}.home-neon .project-center-hero h4,.home-neon .wiki-hero h4{margin:3px 0 7px;font-size:clamp(1.35rem,3vw,2.15rem);letter-spacing:0}.home-neon .project-center-hero>div>span,.home-neon .wiki-hero>div>span{color:#d6c5de;line-height:1.55}.home-neon .project-health{display:grid;gap:4px;min-width:210px;padding:13px;border:1px solid rgba(82,245,237,.38);background:rgba(26,62,66,.3)}.home-neon .project-health span{color:#a995b3;font-size:.68rem}.home-neon .project-health strong{color:#5cf5ed}.home-neon .project-health i,.home-neon .project-metric-grid i,.home-neon .roadmap-list i{position:relative;height:6px;overflow:hidden;border-radius:6px;background:rgba(255,255,255,.12)}.home-neon .project-health i:after{content:"";position:absolute;inset:0 auto 0 0;width:var(--health);background:linear-gradient(90deg,#ff3bd0,#55f3ec)}.home-neon .project-topbar,.home-neon .wiki-toolbar{display:grid;grid-template-columns:minmax(220px,.65fr) minmax(320px,1fr) auto;gap:10px;align-items:end;padding:10px;border:1px solid rgba(255,255,255,.18);background:rgba(9,2,17,.9)}.home-neon .project-topbar>label,.home-neon .wiki-toolbar>label{display:grid;gap:5px;color:#b7a4c0;font-size:.69rem;font-weight:800}.home-neon .project-topbar select,.home-neon .wiki-toolbar input{width:100%;min-height:42px;padding:0 10px;border:1px solid rgba(255,255,255,.23);border-radius:5px;background:#08010f;color:#fff;font:inherit}.home-neon .project-view-tabs,.home-neon .wiki-mode,.home-neon .wiki-filter-row{display:flex;gap:5px;overflow-x:auto}.home-neon .project-view-tabs button,.home-neon .wiki-mode button,.home-neon .wiki-filter-row button{flex:0 0 auto;min-height:40px;padding:0 10px;border:1px solid transparent;border-radius:5px;background:transparent;color:#c6b4cf;font:inherit;font-size:.7rem;font-weight:800}.home-neon .project-view-tabs button.active,.home-neon .wiki-mode button.active,.home-neon .wiki-filter-row button.active{border-color:#ff3dd1;background:rgba(255,53,207,.14);color:#fff}.home-neon .project-dashboard{display:grid;grid-template-columns:minmax(220px,.55fr) minmax(0,1.7fr);min-height:650px;border:1px solid rgba(255,255,255,.2);background:#08010e}.home-neon .project-list-panel{padding:13px;border-right:1px solid rgba(255,255,255,.15);background:rgba(22,5,30,.82)}.home-neon .project-list-panel header,.home-neon .project-pane-heading,.home-neon .project-timeline header{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:11px}.home-neon .project-list-panel header>div,.home-neon .project-pane-heading>div{display:grid}.home-neon .project-list-panel header span,.home-neon .project-pane-heading span{color:#58f3ec;font-size:.66rem;font-weight:900;text-transform:uppercase}.home-neon .project-list-panel header button,.home-neon .project-pane-heading button,.home-neon .project-timeline header button{padding:7px 9px;border:1px solid rgba(255,255,255,.2);border-radius:4px;background:transparent;color:#fff}.home-neon [data-project-list]{display:grid;gap:7px}.home-neon .project-list-item{display:grid;grid-template-columns:8px minmax(0,1fr) auto;gap:8px;align-items:center;width:100%;padding:10px;border:1px solid rgba(255,255,255,.14);border-radius:5px;background:rgba(255,255,255,.03);color:#fff;text-align:left}.home-neon .project-list-item.active,.home-neon .project-list-item:hover{border-color:var(--project-color);background:rgba(255,255,255,.075)}.home-neon .project-list-item>i{width:8px;height:36px;border-radius:4px;background:var(--project-color);box-shadow:0 0 12px var(--project-color)}.home-neon .project-list-item div{display:grid;min-width:0}.home-neon .project-list-item strong,.home-neon .project-list-item span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-neon .project-list-item span{color:#a993b3;font-size:.64rem}.home-neon .project-list-item>b{padding:4px 6px;border-radius:4px;background:rgba(255,255,255,.08);font-size:.58rem}.home-neon .project-mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:5px;margin-top:14px}.home-neon .project-mini-stats span{display:grid;padding:8px 3px;border:1px solid rgba(255,255,255,.12);color:#9e8ba8;font-size:.57rem;text-align:center}.home-neon .project-mini-stats b{color:#f7ff69;font-size:.9rem}.home-neon .project-workspace{min-width:0;padding:16px}.home-neon .project-pane{display:none}.home-neon .project-pane.active{display:block}.home-neon .project-overview-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.home-neon .project-overview-head span{color:#5af5ed;font-size:.68rem;font-weight:900;text-transform:uppercase}.home-neon .project-overview-head h5{margin:3px 0;font-size:1.35rem}.home-neon .project-overview-head p{margin:0;color:#bca9c5}.home-neon .project-overview-head button{padding:8px 10px;border:1px solid #ff42d2;border-radius:4px;background:transparent;color:#fff}.home-neon .project-metric-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px;margin:18px 0}.home-neon .project-metric-grid article{display:grid;gap:5px;padding:12px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.035)}.home-neon .project-metric-grid span,.home-neon .project-metric-grid small{color:#a993b4;font-size:.64rem}.home-neon .project-metric-grid strong{font-size:1.05rem}.home-neon .project-metric-grid i b,.home-neon .roadmap-list i b{display:block;height:100%;background:linear-gradient(90deg,#ff3bd0,#52f2eb)}.home-neon .project-progress-control{display:flex;align-items:end;gap:12px;padding:13px;border:1px solid rgba(255,255,255,.15);background:#0b0213}.home-neon .project-progress-control label{display:grid;grid-template-columns:1fr auto;gap:6px;flex:1;color:#cbb8d4;font-size:.7rem}.home-neon .project-progress-control input{grid-column:1/-1;width:100%;accent-color:#ff3bd0}.home-neon .project-progress-control button{min-height:40px;border:1px solid #56f3ec;border-radius:4px;background:rgba(83,243,236,.1);color:#fff}.home-neon .project-timeline{margin-top:14px}.home-neon .project-timeline [data-project-activity]{display:grid;gap:6px;max-height:190px;overflow:auto}.home-neon .project-timeline p{display:grid;grid-template-columns:12px 1fr;gap:8px;align-items:center;margin:0;padding:8px;background:rgba(255,255,255,.03);color:#cbb9d3;font-size:.68rem}.home-neon .project-timeline p i{width:8px;height:8px;border-radius:50%;background:#57f4ec;box-shadow:0 0 10px #57f4ec}.home-neon .project-kanban{display:grid;grid-template-columns:repeat(4,minmax(160px,1fr));gap:9px;overflow-x:auto}.home-neon .project-kanban>section{min-width:160px;padding:9px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.025)}.home-neon .project-kanban>section>header{display:flex;justify-content:space-between;margin-bottom:8px}.home-neon .project-kanban>section>header span{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:#25102d;color:#58f4ec}.home-neon .project-kanban>section>div{display:grid;gap:7px}.home-neon .project-kanban article{display:grid;gap:6px;padding:9px;border:1px solid rgba(255,255,255,.15);border-radius:5px;background:#100419}.home-neon .project-kanban article>span{color:#f7ff6c;font-size:.58rem}.home-neon .project-kanban article small{color:#9e8aa8}.home-neon .project-kanban article div{display:flex;justify-content:flex-end;gap:4px}.home-neon .project-kanban article button{border:1px solid rgba(255,255,255,.16);background:transparent;color:#d7c8dd}.home-neon .roadmap-list,.home-neon .bug-list,.home-neon .release-list{display:grid;gap:8px}.home-neon .roadmap-list article{display:grid;grid-template-columns:42px minmax(0,1fr) 48px;gap:10px;align-items:center;padding:11px;border:1px solid rgba(255,255,255,.15)}.home-neon .roadmap-list article>span{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:linear-gradient(135deg,#ff3bd0,#55f2eb);color:#150019;font-weight:900}.home-neon .roadmap-list article>div{display:grid;gap:5px}.home-neon .roadmap-list small{color:#a892b2}.home-neon .bug-list article{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:10px;align-items:center;padding:11px;border:1px solid rgba(255,255,255,.15)}.home-neon .bug-list article>span{padding:5px 7px;border-radius:4px;background:#ff5c7a;color:#180006;font-size:.62rem;font-weight:900}.home-neon .bug-list article div{display:grid}.home-neon .bug-list small{color:#a892b2}.home-neon .bug-list button{padding:7px;border:1px solid #55f3ec;background:transparent;color:#fff}.home-neon .release-list article{display:grid;grid-template-columns:60px 1fr;gap:10px;padding:12px;border-left:3px solid #ff3dd1;background:rgba(255,255,255,.035)}.home-neon .release-list article>b{color:#5df5ed}.home-neon .release-list article div{display:flex;justify-content:space-between}.home-neon .release-list span{color:#a993b4}.home-neon .project-dialog{width:min(500px,calc(100% - 28px));padding:0;border:1px solid #ff3dd1;border-radius:7px;background:#0b0213;color:#fff}.home-neon .project-dialog::backdrop{background:rgba(3,0,8,.8);backdrop-filter:blur(8px)}.home-neon .project-dialog>form{position:absolute;right:10px;top:10px}.home-neon .project-dialog>form button{width:32px;height:32px;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:transparent;color:#fff}.home-neon .project-dialog>div{display:grid;gap:10px;padding:24px}.home-neon .project-dialog h5{margin:0;font-size:1.25rem}.home-neon .project-dialog label{display:grid;gap:5px;color:#c9b7d2;font-size:.7rem;font-weight:800}.home-neon .project-dialog>div>div{display:grid;grid-template-columns:1fr 1fr;gap:8px}.home-neon .project-dialog input,.home-neon .project-dialog textarea,.home-neon .project-dialog select{width:100%;min-height:42px;padding:8px;border:1px solid rgba(255,255,255,.22);border-radius:5px;background:#08010f;color:#fff;font:inherit}
.home-neon .wiki-stats{display:grid;grid-template-columns:repeat(3,1fr);min-width:270px;border:1px solid rgba(255,255,255,.17)}.home-neon .wiki-stats span{display:grid;padding:10px;border-right:1px solid rgba(255,255,255,.14);color:#aa97b4;font-size:.62rem;text-align:center}.home-neon .wiki-stats b{color:#5af4ec;font-size:1.05rem}.home-neon .wiki-layout{display:grid;grid-template-columns:minmax(210px,.52fr) minmax(430px,1.5fr) minmax(220px,.55fr);min-height:700px;border:1px solid rgba(255,255,255,.2);background:#08010e}.home-neon .wiki-sidebar,.home-neon .wiki-inspector{padding:12px;background:rgba(22,5,30,.8)}.home-neon .wiki-sidebar{border-right:1px solid rgba(255,255,255,.14)}.home-neon .wiki-article-list{display:grid;gap:6px;margin-top:9px;max-height:390px;overflow:auto}.home-neon .wiki-article-list button{display:grid;gap:3px;width:100%;padding:10px;border:1px solid rgba(255,255,255,.13);border-radius:4px;background:rgba(255,255,255,.03);color:#fff;text-align:left}.home-neon .wiki-article-list button.active,.home-neon .wiki-article-list button:hover{border-color:#ff3dd1;background:rgba(255,53,207,.1)}.home-neon .wiki-article-list span{color:#59f4ec;font-size:.6rem;font-weight:900;text-transform:uppercase}.home-neon .wiki-article-list small{color:#9c88a6;font-size:.58rem}.home-neon .wiki-categories{display:grid;gap:6px;margin-top:14px}.home-neon .wiki-categories>strong{color:#f5ff69;font-size:.7rem}.home-neon .wiki-categories button{display:grid;grid-template-columns:24px 1fr auto;gap:7px;width:100%;padding:7px;border:0;background:transparent;color:#cbb9d3;text-align:left}.home-neon .wiki-categories button b{color:#5df4ec}.home-neon .wiki-editor{min-width:0;padding:14px}.home-neon .wiki-document-head{display:flex;align-items:center;justify-content:space-between;gap:10px}.home-neon .wiki-document-head>div:first-child{display:grid;flex:1}.home-neon .wiki-document-head input{min-width:0;border:0;background:transparent;color:#fff;font:800 1.25rem "Be Vietnam Pro",sans-serif}.home-neon .wiki-document-head span{color:#9d89a7;font-size:.62rem}.home-neon .wiki-document-head>div:last-child{display:flex;gap:6px}.home-neon .wiki-document-head button{min-height:36px;padding:0 9px;border:1px solid rgba(255,255,255,.2);border-radius:4px;background:transparent;color:#fff}.home-neon .wiki-document-head button.active{color:#f8ff69}.home-neon .wiki-meta-fields{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:12px 0}.home-neon .wiki-meta-fields label{display:grid;gap:4px;color:#b6a3c0;font-size:.65rem}.home-neon .wiki-meta-fields input{min-height:38px;padding:0 9px;border:1px solid rgba(255,255,255,.18);border-radius:4px;background:#090211;color:#fff}.home-neon .wiki-format-bar{display:flex;gap:5px;overflow-x:auto;padding:6px;border:1px solid rgba(255,255,255,.15);border-bottom:0;background:#100419}.home-neon .wiki-format-bar button{flex:0 0 auto;min-width:36px;height:32px;border:1px solid rgba(255,255,255,.15);border-radius:3px;background:transparent;color:#d7c7de;font-weight:800}.home-neon .wiki-split{display:grid;grid-template-columns:1fr 1fr;min-height:510px;border:1px solid rgba(255,255,255,.17)}.home-neon .wiki-split[data-mode=edit]{grid-template-columns:1fr}.home-neon .wiki-split[data-mode=edit] .wiki-preview{display:none}.home-neon .wiki-split[data-mode=preview]{grid-template-columns:1fr}.home-neon .wiki-split[data-mode=preview] textarea{display:none}.home-neon .wiki-split textarea{width:100%;min-height:510px;padding:14px;resize:none;border:0;border-right:1px solid rgba(255,255,255,.16);background:#07010d;color:#e9dfed;font:500 .76rem/1.65 Consolas,monospace}.home-neon .wiki-preview{min-width:0;max-height:510px;padding:16px;overflow:auto;background:#0c0313;color:#e9dfed;line-height:1.7}.home-neon .wiki-preview h1,.home-neon .wiki-preview h2,.home-neon .wiki-preview h3{margin:1em 0 .4em;letter-spacing:0;color:#fff}.home-neon .wiki-preview h1{font-size:1.45rem}.home-neon .wiki-preview h2{font-size:1.15rem;color:#62f5ed}.home-neon .wiki-preview h3{font-size:.98rem}.home-neon .wiki-preview p{margin:.6em 0}.home-neon .wiki-preview code{padding:2px 5px;border-radius:3px;background:#25102d;color:#f8ff6e}.home-neon .wiki-preview blockquote{margin:10px 0;padding:8px 10px;border-left:3px solid #ff3dd1;background:rgba(255,61,209,.07)}.home-neon .wiki-preview a{color:#58f3ec}.home-neon .wiki-inspector{display:flex;flex-direction:column;gap:11px;border-left:1px solid rgba(255,255,255,.14)}.home-neon .wiki-inspector section{padding:10px;border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.025)}.home-neon .wiki-inspector header{display:flex;justify-content:space-between;margin-bottom:8px}.home-neon .wiki-inspector header span{color:#5bf5ed;font-size:.65rem;font-weight:900;text-transform:uppercase}.home-neon .wiki-inspector header button{border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff}.home-neon [data-wiki-toc],.home-neon [data-wiki-related]{display:grid;gap:5px}.home-neon [data-wiki-toc] a{padding-left:calc((var(--level) - 1)*10px);color:#cbb9d3;font-size:.68rem;text-decoration:none}.home-neon [data-wiki-related] button{padding:7px;border:0;border-left:2px solid #ff3dd1;background:rgba(255,255,255,.03);color:#d9cadd;text-align:left}.home-neon .wiki-doc-info{display:grid;grid-template-columns:repeat(3,1fr);gap:4px;margin-top:auto}.home-neon .wiki-doc-info span{display:grid;color:#9c89a6;font-size:.55rem;text-align:center}.home-neon .wiki-doc-info b{color:#f7ff6b;font-size:.85rem}
@media(max-width:1150px){.home-neon .wiki-layout{grid-template-columns:210px minmax(0,1fr)}.home-neon .wiki-inspector{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr 1fr;border-top:1px solid rgba(255,255,255,.14);border-left:0}.home-neon .project-metric-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.home-neon .project-center-hero,.home-neon .wiki-hero{align-items:stretch;flex-direction:column}.home-neon .project-health,.home-neon .wiki-stats{min-width:0}.home-neon .project-topbar,.home-neon .wiki-toolbar{grid-template-columns:1fr}.home-neon .project-dashboard,.home-neon .wiki-layout{grid-template-columns:1fr}.home-neon .project-list-panel,.home-neon .wiki-sidebar{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}.home-neon .project-kanban{grid-template-columns:repeat(4,240px)}.home-neon .wiki-inspector{display:flex}.home-neon .wiki-split{grid-template-columns:1fr}.home-neon .wiki-split textarea{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.home-neon .wiki-document-head{align-items:stretch;flex-direction:column}.home-neon .wiki-meta-fields{grid-template-columns:1fr}}

/* Media Center */
.home-neon .media-center-app { display:grid; gap:14px; min-width:0; color:#fff; }
.home-neon .media-center-hero { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px; border:1px solid rgba(255,255,255,.22); background:radial-gradient(circle at 8% 10%,rgba(255,48,204,.22),transparent 34%),radial-gradient(circle at 90% 80%,rgba(60,240,235,.16),transparent 36%),#090211; }
.home-neon .media-center-hero h4 { margin:3px 0 7px; font-size:clamp(1.35rem,3vw,2.15rem); letter-spacing:0; }
.home-neon .media-center-hero > div > span { color:#d7c7df; line-height:1.55; }
.home-neon .media-hero-stats { display:grid; grid-template-columns:repeat(3,1fr); min-width:300px; border:1px solid rgba(255,255,255,.17); }
.home-neon .media-hero-stats span { display:grid; gap:2px; padding:11px; border-right:1px solid rgba(255,255,255,.14); color:#ab98b5; font-size:.68rem; text-align:center; }
.home-neon .media-hero-stats span:last-child { border-right:0; }
.home-neon .media-hero-stats b { color:#62f8ee; font-size:1.1rem; }
.home-neon .media-command-bar { display:grid; grid-template-columns:minmax(220px,1fr) auto auto auto; gap:9px; align-items:end; padding:11px; border:1px solid rgba(255,255,255,.18); background:rgba(9,2,17,.9); }
.home-neon .media-search { display:grid; gap:5px; color:#bba8c4; font-size:.69rem; font-weight:800; }
.home-neon .media-search input { width:100%; min-height:42px; padding:0 12px; border:1px solid rgba(255,255,255,.23); border-radius:5px; background:#08010f; color:#fff; font:inherit; }
.home-neon .media-view-switch { display:flex; height:42px; padding:3px; border:1px solid rgba(255,255,255,.2); border-radius:5px; }
.home-neon .media-view-switch button { border:0; border-radius:3px; background:transparent; color:#bcaac5; font:inherit; font-size:.72rem; font-weight:800; }
.home-neon .media-view-switch button.active { background:linear-gradient(135deg,#ff3dd0,#55f3eb); color:#170019; }
.home-neon .media-upload { position:relative; display:inline-flex; align-items:center; justify-content:center; min-height:42px; overflow:hidden; cursor:pointer; }
.home-neon .media-upload input { position:absolute; width:1px; height:1px; opacity:0; }
.home-neon .media-category-tabs { display:flex; gap:7px; overflow-x:auto; padding-bottom:3px; }
.home-neon .media-category-tabs button { flex:0 0 auto; padding:8px 12px; border:1px solid rgba(255,255,255,.2); border-radius:999px; background:rgba(255,255,255,.04); color:#d8c9df; font:inherit; font-size:.72rem; font-weight:800; }
.home-neon .media-category-tabs button.active,.home-neon .media-category-tabs button:hover { border-color:#ff3fd1; background:rgba(255,55,207,.16); color:#fff; }
.home-neon .media-layout { display:grid; grid-template-columns:minmax(0,1.65fr) minmax(280px,.65fr); gap:14px; min-height:620px; }
.home-neon .media-library,.home-neon .media-sidebar > section { border:1px solid rgba(255,255,255,.18); background:rgba(9,2,16,.86); }
.home-neon .media-library { padding:14px; }
.home-neon .media-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:11px; }
.home-neon .media-card { min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.2); border-radius:6px; background:linear-gradient(155deg,rgba(37,12,45,.92),rgba(8,2,15,.96)); }
.home-neon .media-card:hover { border-color:#ff3dd0; transform:translateY(-3px); box-shadow:0 12px 30px rgba(255,39,203,.14); }
.home-neon .media-cover { position:relative; display:grid; place-items:center; width:100%; aspect-ratio:16/10; overflow:hidden; border:0; background:radial-gradient(circle at 30% 25%,rgba(57,232,240,.32),transparent 28%),linear-gradient(135deg,#24072c,#090210); color:#fff; }
.home-neon .media-cover img { width:100%; height:100%; object-fit:cover; transition:transform .3s ease; }
.home-neon .media-card:hover .media-cover img { transform:scale(1.04); }
.home-neon .media-cover > i { position:absolute; left:8px; bottom:8px; padding:4px 7px; border-radius:4px; background:rgba(5,0,10,.82); color:#5ff5ec; font-style:normal; font-size:.62rem; font-weight:900; text-transform:uppercase; }
.home-neon .media-type-icon { display:grid; place-items:center; width:54px; height:54px; border:1px solid rgba(255,255,255,.72); border-radius:50%; background:linear-gradient(135deg,#ff3dcf,#55f1eb); color:#160019; font-size:1.4rem; box-shadow:0 0 26px rgba(255,48,205,.35); }
.home-neon .media-card-info { display:grid; grid-template-columns:minmax(0,1fr) 32px; gap:8px; align-items:center; padding:11px 11px 7px; }
.home-neon .media-card-info > div { display:grid; min-width:0; gap:3px; }
.home-neon .media-card-info strong { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:.8rem; }
.home-neon .media-card-info span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:#a993b4; font-size:.65rem; }
.home-neon .media-card-info > button { width:30px; height:30px; border:1px solid rgba(255,255,255,.18); border-radius:50%; background:transparent; color:#c2afca; }
.home-neon .media-card-info > button.active { border-color:#ff4fd5; color:#ff4fd5; }
.home-neon .media-card-actions { display:grid; grid-template-columns:1fr 1fr 34px; gap:5px; padding:5px 10px 10px; }
.home-neon .media-card-actions button { min-width:0; min-height:32px; border:1px solid rgba(255,255,255,.15); border-radius:4px; background:rgba(255,255,255,.035); color:#d9c9df; font:inherit; font-size:.64rem; font-weight:800; }
.home-neon .media-card-actions button:hover { border-color:#54f3ec; color:#fff; }
.home-neon .media-grid.list-view { grid-template-columns:1fr; }
.home-neon .media-grid.list-view .media-card { display:grid; grid-template-columns:150px minmax(0,1fr) 210px; align-items:center; }
.home-neon .media-grid.list-view .media-cover { aspect-ratio:16/9; }
.home-neon .media-empty { min-height:360px; place-items:center; align-content:center; text-align:center; }
.home-neon .media-empty:not([hidden]) { display:grid; }
.home-neon .media-empty span { color:#5af5ed; font-weight:900; }
.home-neon .media-empty strong { margin:7px 0 3px; font-size:1.2rem; }
.home-neon .media-empty p { color:#a994b3; }
.home-neon .media-sidebar { display:flex; flex-direction:column; gap:11px; min-width:0; }
.home-neon .media-sidebar > section { padding:12px; }
.home-neon .media-sidebar header { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:10px; }
.home-neon .media-sidebar header span { color:#5cf5ed; font-size:.68rem; font-weight:900; text-transform:uppercase; }
.home-neon .media-sidebar header button { min-width:30px; min-height:30px; border:1px solid rgba(255,255,255,.2); border-radius:4px; background:transparent; color:#fff; }
.home-neon .media-preview-stage { display:grid; place-items:center; min-height:230px; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:5px; background:#050009; }
.home-neon .media-preview-stage img,.home-neon .media-preview-stage video,.home-neon .media-preview-stage iframe { width:100%; height:230px; border:0; object-fit:contain; }
.home-neon .media-preview-stage audio { width:calc(100% - 20px); margin:10px; }
.home-neon .media-preview-placeholder,.home-neon .media-audio-art,.home-neon .media-link-preview { display:grid; place-items:center; gap:7px; padding:20px; text-align:center; }
.home-neon .media-preview-placeholder > span,.home-neon .media-audio-art > span,.home-neon .media-link-preview > span { display:grid; place-items:center; width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#ff3dd0,#53f3ec); color:#150019; font-size:1.3rem; }
.home-neon .media-preview-placeholder p,.home-neon .media-audio-art p { margin:0; color:#a993b4; font-size:.7rem; }
.home-neon .media-link-preview a { padding:8px 12px; border-radius:4px; background:#58f3ec; color:#100017; font-weight:900; text-decoration:none; }
.home-neon .media-preview-meta { display:grid; gap:2px; margin-top:9px; }
.home-neon .media-preview-meta span { color:#a792b1; font-size:.68rem; }
.home-neon .media-playlists header > div { display:grid; }
.home-neon .media-playlists [data-media-playlists] { display:grid; gap:6px; }
.home-neon .media-playlists [data-media-playlist] { display:grid; grid-template-columns:32px 1fr; gap:8px; align-items:center; width:100%; padding:8px; border:1px solid rgba(255,255,255,.13); border-radius:4px; background:rgba(255,255,255,.03); color:#fff; text-align:left; }
.home-neon .media-playlists [data-media-playlist] > span { display:grid; place-items:center; width:32px; height:32px; border-radius:4px; background:rgba(255,51,207,.15); color:#ff59d8; }
.home-neon .media-playlists [data-media-playlist] div { display:grid; }
.home-neon .media-playlists small { color:#a58faf; }
.home-neon .media-activity [data-media-activity] { display:grid; gap:5px; max-height:120px; overflow:auto; }
.home-neon .media-activity p { margin:0; padding:7px; border-left:2px solid #54eee8; background:rgba(255,255,255,.035); color:#cdbbd5; font-size:.65rem; }
.home-neon .media-dialog { width:min(480px,calc(100% - 28px)); padding:0; border:1px solid #ff43d2; border-radius:7px; background:#0b0213; color:#fff; box-shadow:0 22px 80px rgba(0,0,0,.7),0 0 35px rgba(255,42,205,.2); }
.home-neon .media-dialog::backdrop { background:rgba(3,0,8,.78); backdrop-filter:blur(8px); }
.home-neon .media-dialog > form { position:absolute; top:10px; right:10px; }
.home-neon .media-dialog > form button { width:32px; height:32px; border:1px solid rgba(255,255,255,.2); border-radius:50%; background:transparent; color:#fff; font-size:1.1rem; }
.home-neon .media-dialog > div { display:grid; gap:11px; padding:24px; }
.home-neon .media-dialog h5 { margin:0; font-size:1.25rem; }
.home-neon .media-dialog label { display:grid; gap:5px; color:#cbb8d4; font-size:.72rem; font-weight:800; }
.home-neon .media-dialog input,.home-neon .media-dialog select { width:100%; min-height:42px; padding:0 10px; border:1px solid rgba(255,255,255,.23); border-radius:5px; background:#08010f; color:#fff; font:inherit; }
@media(max-width:1100px){.home-neon .media-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-neon .media-layout{grid-template-columns:1fr}.home-neon .media-sidebar{display:grid;grid-template-columns:1fr 1fr}.home-neon .media-now-playing{grid-row:span 2}}
@media(max-width:720px){.home-neon .media-center-hero{align-items:stretch;flex-direction:column}.home-neon .media-hero-stats{min-width:0}.home-neon .media-command-bar{grid-template-columns:1fr 1fr}.home-neon .media-search{grid-column:1/-1}.home-neon .media-grid{grid-template-columns:1fr}.home-neon .media-grid.list-view .media-card{grid-template-columns:110px minmax(0,1fr)}.home-neon .media-grid.list-view .media-card-actions{grid-column:1/-1}.home-neon .media-sidebar{display:flex}.home-neon .media-now-playing{grid-row:auto}}

/* AI Center */
.home-neon .ai-center-app { display: grid; gap: 14px; min-width: 0; color: #fff; }
.home-neon .ai-center-hero { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px; border: 1px solid rgba(255,255,255,.22); background: radial-gradient(circle at 10% 10%, rgba(48,232,255,.2), transparent 34%), radial-gradient(circle at 90% 90%, rgba(255,45,205,.17), transparent 38%), #090212; }
.home-neon .ai-center-hero h4 { margin: 3px 0 7px; font-size: clamp(1.35rem,3vw,2.15rem); letter-spacing: 0; }
.home-neon .ai-center-hero > div > span { color: #d5c5df; line-height: 1.5; }
.home-neon .ai-model-status { display: flex; align-items: center; gap: 10px; min-width: 210px; padding: 12px 14px; border: 1px solid rgba(70,246,239,.38); background: rgba(21,57,64,.35); }
.home-neon .ai-model-status i { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: #61f7a6; box-shadow: 0 0 15px #61f7a6; }
.home-neon .ai-model-status div { display: grid; gap: 2px; }
.home-neon .ai-model-status strong { color: #66fff2; font-size: .82rem; }
.home-neon .ai-model-status span { color: #b8a8c1; font-size: .67rem; }
.home-neon .ai-center-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px; border: 1px solid rgba(255,255,255,.18); background: rgba(9,2,17,.88); }
.home-neon .ai-tool-tabs { display: flex; gap: 6px; overflow-x: auto; }
.home-neon .ai-tool-tabs button { flex: 0 0 auto; padding: 9px 12px; border: 1px solid transparent; border-radius: 5px; background: transparent; color: #cdbbd6; font: inherit; font-size: .78rem; font-weight: 800; }
.home-neon .ai-tool-tabs button:hover,.home-neon .ai-tool-tabs button.active { border-color: #ff42d1; background: linear-gradient(135deg,rgba(255,52,207,.22),rgba(46,235,239,.13)); color: #fff; }
.home-neon .ai-model-select { display: flex; align-items: center; gap: 8px; color: #ad9ab8; font-size: .72rem; font-weight: 800; }
.home-neon .ai-model-select select { min-height: 38px; padding: 0 9px; border: 1px solid rgba(69,243,237,.5); border-radius: 5px; background: #0a0312; color: #fff; font: inherit; font-size: .76rem; }
.home-neon .ai-center-layout { display: grid; grid-template-columns: minmax(190px,.58fr) minmax(380px,1.55fr) minmax(260px,.82fr); min-height: 660px; border: 1px solid rgba(255,255,255,.22); background: #08010e; }
.home-neon .ai-sidebar,.home-neon .ai-context-panel { min-width: 0; padding: 14px; background: rgba(20,5,29,.82); }
.home-neon .ai-sidebar { display: flex; flex-direction: column; gap: 13px; border-right: 1px solid rgba(255,255,255,.15); }
.home-neon .ai-new-session { width: 100%; min-height: 42px; border: 1px solid #45eee8; border-radius: 5px; background: rgba(61,239,235,.1); color: #fff; font: inherit; font-weight: 900; }
.home-neon .ai-history-search { display: grid; gap: 6px; color: #bcaac6; font-size: .72rem; font-weight: 800; }
.home-neon .ai-history-search input { width: 100%; min-height: 39px; padding: 0 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 5px; background: #090211; color: #fff; font: inherit; }
.home-neon .ai-session-list { display: grid; gap: 6px; max-height: 230px; overflow: auto; }
.home-neon .ai-session-list > p { color: #9e8aa9; font-size: .76rem; }
.home-neon .ai-session-list button { display: grid; gap: 3px; width: 100%; padding: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 4px; background: rgba(255,255,255,.035); color: #fff; text-align: left; }
.home-neon .ai-session-list button:hover { border-color: #ff43d2; transform: translateX(3px); }
.home-neon .ai-session-list span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 800; }
.home-neon .ai-session-list small { color: #9f8cab; font-size: .64rem; }
.home-neon .ai-quick-prompts { display: grid; gap: 6px; margin-top: auto; }
.home-neon .ai-quick-prompts > strong { margin-bottom: 2px; color: #61f7ed; font-size: .74rem; }
.home-neon .ai-quick-prompts button { padding: 8px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 4px; background: transparent; color: #dbcce2; font: inherit; font-size: .7rem; text-align: left; }
.home-neon .ai-workspace { min-width: 0; padding: 16px; background: radial-gradient(circle at 50% 0,rgba(66,26,86,.2),transparent 42%),#08010e; }
.home-neon .ai-pane { display: none; min-width: 0; height: 100%; }
.home-neon .ai-pane.active { display: flex; flex-direction: column; gap: 14px; }
.home-neon .ai-chat-stream { display: flex; flex: 1; flex-direction: column; gap: 13px; max-height: 490px; overflow: auto; padding: 4px; }
.home-neon .ai-message { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 10px; align-items: start; }
.home-neon .ai-message > span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #ff48d4; border-radius: 6px; background: linear-gradient(135deg,#ff3dcc,#47f1ec); color: #17001e; font-size: .72rem; font-weight: 900; }
.home-neon .ai-message.user > span { border-color: #69f8ee; background: #151027; color: #65f6ed; }
.home-neon .ai-message > div { padding: 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: rgba(255,255,255,.04); }
.home-neon .ai-message strong { color: #61f5ec; font-size: .76rem; }
.home-neon .ai-message p { margin: 6px 0 0; color: #eadff0; line-height: 1.65; white-space: pre-wrap; overflow-wrap: anywhere; }
.home-neon .ai-message.thinking { opacity: .65; animation: aiPulse 1.2s ease-in-out infinite; }
@keyframes aiPulse { 50% { opacity: .35; } }
.home-neon .ai-composer { margin-top: auto; padding: 10px; border: 1px solid rgba(255,67,210,.45); border-radius: 7px; background: #0c0314; }
.home-neon .ai-composer textarea,.home-neon .ai-large-input,.home-neon .ai-prompt-grid input,.home-neon .ai-prompt-grid textarea,.home-neon .ai-prompt-grid select,.home-neon .ai-translate-grid textarea,.home-neon .ai-translate-grid select,.home-neon .ai-workflow-source textarea,.home-neon .ai-workflow-steps input { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; background: #090210; color: #fff; font: inherit; }
.home-neon .ai-composer textarea { min-height: 72px; padding: 10px; border: 0; resize: vertical; }
.home-neon .ai-composer > div { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.home-neon .ai-composer > div > span { margin-right: auto; color: #9e8aa8; font-size: .67rem; }
.home-neon .ai-composer button,.home-neon .ai-pane-heading button { padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 5px; background: transparent; color: #fff; font: inherit; font-weight: 800; }
.home-neon .ai-pane-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.home-neon .ai-pane-heading div:first-child { display: grid; gap: 2px; }
.home-neon .ai-pane-heading span { color: #59f5ed; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.home-neon .ai-pane-heading h5 { margin: 0; font-size: 1.15rem; }
.home-neon .ai-score { display: flex; align-items: baseline; gap: 2px; }
.home-neon .ai-score strong { font-size: 1.6rem; color: #f8ff65; }
.home-neon .ai-prompt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.home-neon .ai-prompt-grid label,.home-neon .ai-translate-grid label,.home-neon .ai-workflow-source { display: grid; gap: 6px; color: #cdbad6; font-size: .74rem; font-weight: 800; }
.home-neon .ai-prompt-grid label.wide { grid-column: 1/-1; }
.home-neon .ai-prompt-grid input,.home-neon .ai-prompt-grid select { min-height: 42px; padding: 0 10px; }
.home-neon .ai-prompt-grid textarea,.home-neon .ai-large-input,.home-neon .ai-translate-grid textarea,.home-neon .ai-workflow-source textarea { padding: 10px; resize: vertical; line-height: 1.5; }
.home-neon .ai-build-prompt { align-self: flex-end; }
.home-neon .ai-option-row { display: flex; flex-wrap: wrap; gap: 8px; }
.home-neon .ai-option-row label { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; color: #d9cae0; font-size: .72rem; }
.home-neon .ai-option-row input { accent-color: #ff3bd1; }
.home-neon .ai-translate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.home-neon .ai-translate-grid select { min-height: 40px; padding: 0 10px; }
.home-neon .ai-workflow-steps { display: grid; gap: 8px; }
.home-neon .ai-workflow-steps label { display: grid; grid-template-columns: 34px minmax(0,1fr) 34px; gap: 8px; align-items: center; }
.home-neon .ai-workflow-steps label > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#ff49d4,#4cf4ed); color: #130019; font-weight: 900; }
.home-neon .ai-workflow-steps input { min-height: 40px; padding: 0 10px; }
.home-neon .ai-workflow-steps button { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; background: transparent; color: #ff789e; }
.home-neon .ai-context-panel { display: flex; flex-direction: column; gap: 13px; border-left: 1px solid rgba(255,255,255,.15); }
.home-neon .ai-context-panel header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.home-neon .ai-context-panel header > div { display: grid; }
.home-neon .ai-context-panel header span { color: #60f5ec; font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.home-neon .ai-context-panel header button,.home-neon .ai-result-actions button { padding: 7px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; background: transparent; color: #fff; font: inherit; font-size: .7rem; font-weight: 800; }
.home-neon .ai-context-panel pre { flex: 1; min-height: 340px; max-height: 470px; margin: 0; padding: 12px; overflow: auto; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; background: #08010e; color: #e9dded; font: 500 .76rem/1.65 "Be Vietnam Pro",sans-serif; white-space: pre-wrap; overflow-wrap: anywhere; }
.home-neon .ai-result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.home-neon .ai-insights { display: grid; gap: 8px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.15); }
.home-neon .ai-insights > strong { color: #f5ff69; font-size: .72rem; }
.home-neon .ai-insights span { display: grid; grid-template-columns: 90px 1fr; gap: 7px; align-items: center; color: #bba9c4; font-size: .66rem; }
.home-neon .ai-insights i { position: relative; height: 5px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.12); }
.home-neon .ai-insights i::after { content:""; position:absolute; inset:0 auto 0 0; width:var(--value); background:linear-gradient(90deg,#ff3bd1,#4cf4ed); }

@media (max-width: 1100px) { .home-neon .ai-center-layout { grid-template-columns: 200px minmax(0,1fr); } .home-neon .ai-context-panel { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; } .home-neon .ai-context-panel pre { min-height: 220px; } }
@media (max-width: 720px) { .home-neon .ai-center-hero,.home-neon .ai-center-toolbar { align-items: stretch; flex-direction: column; } .home-neon .ai-model-status { min-width: 0; } .home-neon .ai-model-select { justify-content: space-between; } .home-neon .ai-center-layout { grid-template-columns: 1fr; } .home-neon .ai-sidebar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); } .home-neon .ai-quick-prompts { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 0; } .home-neon .ai-quick-prompts > strong { grid-column: 1/-1; } .home-neon .ai-prompt-grid,.home-neon .ai-translate-grid { grid-template-columns: 1fr; } .home-neon .ai-prompt-grid label.wide { grid-column: auto; } }

/* Download Center */
.home-neon .social-downloader {
  display: grid;
  gap: 16px;
  min-width: 0;
  color: #fff;
}

.home-neon .downloader-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: radial-gradient(circle at 12% 10%, rgba(255, 47, 209, .22), transparent 35%), rgba(8, 2, 18, .9);
}

.home-neon .downloader-hero h4 {
  margin: 4px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: 0;
}

.home-neon .downloader-hero span {
  color: #ddcde5;
  line-height: 1.6;
}

.home-neon .downloader-live {
  display: grid;
  min-width: 150px;
  padding: 14px;
  border: 1px solid rgba(72, 247, 236, .45);
  background: rgba(17, 48, 59, .42);
}

.home-neon .downloader-live i {
  width: 10px;
  height: 10px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: #ffcc42;
  box-shadow: 0 0 14px #ffcc42;
}
.home-neon .downloader-live.ready i { background: #61f7a6; box-shadow: 0 0 14px #61f7a6; }

.home-neon .downloader-live strong { color: #62fff1; }
.home-neon .downloader-live span { font-size: .74rem; }

.home-neon .downloader-platforms {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.home-neon .downloader-platforms span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #f8eaff;
  font-size: .78rem;
  font-weight: 800;
}

.home-neon .downloader-form,
.home-neon .download-preview,
.home-neon .download-queue {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(11, 3, 20, .86);
}

.home-neon .download-url-field { display: grid; gap: 8px; font-weight: 800; }
.home-neon .download-url-field > div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

.home-neon .download-url-field input,
.home-neon .download-options select {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 110, 223, .62);
  border-radius: 6px;
  background: #090211;
  color: #fff;
  font: inherit;
}

.home-neon .download-url-field input:focus,
.home-neon .download-options select:focus {
  outline: 2px solid #3df4ee;
  outline-offset: 2px;
}

.home-neon .download-url-field button,
.home-neon .download-result-actions button,
.home-neon .download-result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #3df4ee;
  border-radius: 6px;
  background: rgba(61, 244, 238, .12);
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.home-neon .download-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.home-neon .download-options label { display: grid; gap: 7px; color: #dfcce6; font-size: .8rem; font-weight: 800; }
.home-neon .download-options .download-check { display: flex; align-items: center; min-height: 46px; margin-top: 24px; padding: 0 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; }
.home-neon .download-check input { accent-color: #ff32ce; }

.home-neon .download-primary-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.home-neon .download-primary-actions button { min-width: 150px; }
.home-neon .download-primary-actions button:disabled { opacity: .55; cursor: wait; }

.home-neon .downloader-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .75fr);
  gap: 14px;
}

.home-neon .download-preview { min-height: 220px; display: grid; place-items: center; }
.home-neon .download-placeholder,
.home-neon .download-result,
.home-neon .download-loading { width: min(100%, 620px); text-align: center; overflow-wrap: anywhere; }
.home-neon .download-placeholder > span,
.home-neon .download-result > span { display: inline-grid; place-items: center; min-width: 52px; height: 34px; padding: 0 10px; border-radius: 5px; background: linear-gradient(135deg, #ff43d2, #6afaf0); color: #110018; font-size: .76rem; font-weight: 900; }
.home-neon .download-placeholder strong,
.home-neon .download-result strong,
.home-neon .download-loading strong { display: block; margin: 13px 0 7px; font-size: 1.2rem; }
.home-neon .download-placeholder p,
.home-neon .download-result p,
.home-neon .download-loading p { margin: 0; color: #cdbbd5; line-height: 1.55; }
.home-neon .download-result.error > span { background: #ff647e; color: #180006; }
.home-neon .download-result.success > span { background: #79f5a8; color: #03160a; }
.home-neon .download-result-actions,
.home-neon .download-file-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 15px; }
.home-neon .download-file-list a { padding: 11px 15px; border-radius: 6px; background: linear-gradient(135deg, #f5ff67, #45f2ec); color: #10011c; font-weight: 900; text-decoration: none; }
.home-neon .download-loading i { display: block; width: 42px; height: 42px; margin: auto; border: 4px solid rgba(255,255,255,.14); border-top-color: #ff3bd4; border-radius: 50%; animation: hhDownloadSpin .8s linear infinite; }
@keyframes hhDownloadSpin { to { transform: rotate(360deg); } }

.home-neon .download-queue header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.home-neon .download-queue header div { display: grid; }
.home-neon .download-queue header span { color: #cdbbd5; font-size: .74rem; }
.home-neon .download-queue header button { padding: 6px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 5px; background: transparent; color: #fff; }
.home-neon .download-queue [data-download-history] { display: grid; gap: 7px; max-height: 260px; overflow: auto; }
.home-neon .download-history-item { display: grid; gap: 3px; width: 100%; padding: 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 5px; background: rgba(255,255,255,.04); color: #fff; text-align: left; }
.home-neon .download-history-item:hover { border-color: #ff42d1; transform: translateX(3px); }
.home-neon .download-history-item span { color: #50f7ed; font-size: .7rem; font-weight: 900; }
.home-neon .download-history-item strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-neon .download-history-item small { color: #aa95b4; }

@media (max-width: 900px) {
  .home-neon .download-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-neon .download-options .download-check { margin-top: 0; }
  .home-neon .downloader-workspace { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .home-neon .downloader-hero { align-items: stretch; flex-direction: column; }
  .home-neon .download-options { grid-template-columns: 1fr; }
  .home-neon .download-url-field > div { grid-template-columns: 1fr; }
  .home-neon .download-primary-actions { display: grid; }
  .home-neon .download-primary-actions button { width: 100%; }
}

/* HH Social v2: final cascade layer */
.home-neon .community-center-app{--social-bg:#0b1017;--social-panel:#111821;--social-panel-2:#17212c;--social-line:#283544;--social-text:#f5f7fb;--social-muted:#9aa8b8;--social-cyan:#50e6e6;--social-pink:#f352cb;width:min(100%,1440px);margin:0 auto;gap:12px;color:var(--social-text);font-family:Inter,"Segoe UI",Arial,sans-serif}
.home-neon .community-center-app button,.home-neon .community-center-app input,.home-neon .community-center-app textarea,.home-neon .community-center-app select{font:inherit;letter-spacing:0}
.home-neon .community-center-app button{cursor:pointer}
.home-neon .community-hero{position:sticky;top:0;z-index:20;display:grid;grid-template-columns:minmax(260px,1fr) auto;align-items:center;gap:24px;padding:18px 22px;border:1px solid var(--social-line);border-radius:8px;background:rgba(11,16,23,.94);box-shadow:0 16px 44px rgba(0,0,0,.34);backdrop-filter:blur(18px) saturate(135%)}
.home-neon .community-hero:before{position:absolute;inset:auto 22px 0;height:1px;background:linear-gradient(90deg,var(--social-pink),transparent 42%,var(--social-cyan));content:""}
.home-neon .community-hero h4{margin:2px 0 4px;font-size:clamp(1.55rem,2.4vw,2.15rem);line-height:1.12}
.home-neon .community-hero>div>span{color:var(--social-muted);font-size:.82rem}
.home-neon .community-hero-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;min-width:0}
.home-neon .community-search{display:grid;grid-template-columns:18px minmax(160px,280px);align-items:center;gap:6px;width:auto;padding:0 12px;border:1px solid var(--social-line);border-radius:999px;background:#080d13;transition:border-color .2s,box-shadow .2s}
.home-neon .community-search:focus-within{border-color:var(--social-cyan);box-shadow:0 0 0 3px rgba(80,230,230,.1)}
.home-neon .community-search input{height:42px;border:0;background:transparent;color:#fff;outline:0}
.home-neon .community-notification-button{position:relative;min-height:42px;padding:0 13px;border:1px solid var(--social-line);border-radius:6px;background:var(--social-panel-2);color:#dfe8f1;font-weight:800}
.home-neon .community-notification-button:hover{border-color:var(--social-pink);color:#fff;transform:translateY(-1px)}
.home-neon .community-notification-button b{position:absolute;top:-7px;right:-6px;display:grid;place-items:center;min-width:19px;height:19px;padding:0 5px;border:2px solid var(--social-bg);border-radius:999px;background:#ff477b;color:#fff;font-size:.6rem}
.home-neon .community-layout{display:grid;grid-template-columns:minmax(210px,240px) minmax(500px,760px) minmax(240px,285px);justify-content:center;align-items:start;gap:14px}
.home-neon .community-nav,.home-neon .community-side{position:sticky;top:92px;max-height:calc(100vh - 106px);overflow:auto;scrollbar-width:thin;scrollbar-color:#3c4d60 transparent}
.home-neon .community-nav{display:flex;flex-direction:column;gap:4px;padding:9px;border:1px solid var(--social-line);border-radius:8px;background:rgba(11,16,23,.82)}
.home-neon .community-nav>button,.home-neon .community-nav section button{min-height:42px;padding:9px 11px;border:0;border-radius:6px;background:transparent;color:#ccd5df;text-align:left;transition:background .16s,color .16s,transform .16s}
.home-neon .community-nav button:hover,.home-neon .community-nav button.active{background:linear-gradient(90deg,rgba(243,82,203,.16),rgba(80,230,230,.08));color:#fff;transform:translateX(2px)}
.home-neon .community-nav section{display:grid;gap:3px;padding:12px 0 5px;border-top:1px solid var(--social-line)}
.home-neon .community-nav section strong{padding:0 10px 5px;color:var(--social-cyan);font-size:.66rem;text-transform:uppercase}
.home-neon .community-profile-card{display:grid!important;grid-template-columns:44px minmax(0,1fr)!important;align-items:center;gap:10px;padding:8px 5px 14px!important;border-top:0!important}
.home-neon .community-profile-card div{display:grid;min-width:0}.home-neon .community-profile-card strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-neon .community-profile-card small{color:var(--social-muted);font-size:.65rem;line-height:1.35}
.home-neon .community-avatar{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;overflow:hidden;border:2px solid rgba(255,255,255,.92);border-radius:50%;background:linear-gradient(145deg,var(--social-pink),var(--social-cyan));color:#081016;font-size:.68rem;font-weight:900;box-shadow:0 0 0 3px rgba(80,230,230,.08)}
.home-neon .community-avatar img{width:100%;height:100%;object-fit:cover}
.home-neon .community-online{display:grid;gap:4px;margin-top:10px;padding:12px;border:1px solid rgba(80,230,230,.3);border-radius:7px;background:linear-gradient(135deg,rgba(80,230,230,.1),rgba(243,82,203,.06))}
.home-neon .community-online i{width:9px;height:9px;border-radius:50%;background:#54e6a4;box-shadow:0 0 12px #54e6a4}.home-neon .community-online span{color:var(--social-muted);font-size:.65rem}.home-neon .community-online a{color:var(--social-cyan);font-size:.7rem}
.home-neon .community-feed{display:grid;align-content:start;gap:12px;min-width:0}
.home-neon .community-stories{display:grid;grid-auto-columns:124px;grid-auto-flow:column;gap:9px;padding:2px 2px 8px;overflow-x:auto;scroll-snap-type:x proximity;scrollbar-width:thin}
.home-neon .community-story{position:relative;display:flex;flex-direction:column;justify-content:flex-end;gap:2px;height:190px;padding:12px;overflow:hidden;border:1px solid var(--social-line);border-radius:8px;background:radial-gradient(circle at 75% 18%,rgba(80,230,230,.24),transparent 28%),linear-gradient(145deg,#202c39,#121821);color:#fff;text-align:left;scroll-snap-align:start;isolation:isolate;transition:transform .2s,border-color .2s,box-shadow .2s}
.home-neon .community-story:nth-child(3n){background:radial-gradient(circle at 25% 20%,rgba(243,82,203,.3),transparent 30%),linear-gradient(145deg,#2d1934,#111821)}
.home-neon .community-story:hover{z-index:2;border-color:var(--social-cyan);box-shadow:0 12px 28px rgba(0,0,0,.35);transform:translateY(-4px)}
.home-neon .community-story:after{position:absolute;z-index:-1;inset:35% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.9));content:""}.home-neon .community-story>img{position:absolute;z-index:-2;inset:0;width:100%;height:100%;object-fit:cover}.home-neon .community-story span{position:absolute;top:11px;left:11px;display:grid;place-items:center;width:38px;height:38px;border:3px solid var(--social-cyan);border-radius:50%;background:#17212c;font-weight:900}.home-neon .story-create span{background:var(--social-cyan);color:#071112;font-size:1.3rem}.home-neon .community-story strong{font-size:.72rem}.home-neon .community-story small{color:#c6d1dc;font-size:.6rem}
.home-neon .community-composer,.home-neon .community-post,.home-neon .community-side>section{border:1px solid var(--social-line);border-radius:8px;background:var(--social-panel);box-shadow:0 7px 24px rgba(0,0,0,.22)}
.home-neon .community-composer{padding:14px}.home-neon .community-composer>div:first-child{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px}.home-neon .community-composer textarea{width:100%;min-height:72px;padding:13px 16px;resize:vertical;border:1px solid transparent;border-radius:22px;background:#202a36;color:#fff;outline:0;transition:border-radius .2s,border-color .2s}.home-neon .community-composer textarea:focus{border-color:var(--social-cyan);border-radius:7px}.home-neon .composer-media{display:grid!important;grid-template-columns:minmax(0,1fr) 110px!important;gap:8px!important;margin:10px 0 0 52px}.home-neon .composer-media[hidden]{display:none!important}.home-neon .composer-media input,.home-neon .composer-media select{min-height:40px;padding:0 10px;border:1px solid var(--social-line);border-radius:6px;background:#080d13;color:#fff}
.home-neon .community-composer footer{display:grid;grid-template-columns:minmax(240px,1fr) auto auto auto;align-items:end;gap:8px;margin-top:11px;padding-top:10px;border-top:1px solid var(--social-line)}.home-neon .community-composer footer>div{display:flex;flex-wrap:wrap;gap:4px}.home-neon .community-composer footer>div button{min-height:36px;padding:7px 9px;border:0;border-radius:6px;background:transparent;color:#cbd5df}.home-neon .community-composer footer>div button:hover{background:#202a36;color:#fff}.home-neon .community-composer footer label{display:grid;gap:3px;color:var(--social-muted);font-size:.58rem}.home-neon .community-composer select{min-width:118px;height:36px;padding:0 9px;border:1px solid var(--social-line);border-radius:5px;background:#080d13;color:#fff}.home-neon .community-composer footer>.button{min-height:38px;padding:0 18px}
.home-neon .community-feed-status{position:sticky;top:82px;z-index:6;width:max-content;max-width:100%;margin:auto;padding:5px 12px;border:1px solid transparent;border-radius:999px;background:rgba(11,16,23,.86);color:var(--social-muted);font-size:.63rem;backdrop-filter:blur(10px)}.home-neon .community-feed-status[data-state=success]{border-color:#4fe1a1;color:#7af0ba}.home-neon .community-feed-status[data-state=error]{border-color:#ff6f85;color:#ff9cab}
.home-neon [data-community-posts]{display:grid;gap:12px}.home-neon .community-post{padding:0;overflow:visible;animation:hhSocialIn .32s ease both}.home-neon .community-post header{display:grid;grid-template-columns:42px minmax(0,1fr) 36px;align-items:center;gap:10px;padding:14px 15px 8px}.home-neon .community-post header>div{display:grid;min-width:0}.home-neon .community-post header strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-neon .community-post header em{color:#ffd75a;font-size:.6rem;font-style:normal}.home-neon .community-post header small{color:var(--social-muted);font-size:.63rem}.home-neon .community-icon-button{width:34px;height:34px;border:0;border-radius:50%;background:transparent;color:var(--social-muted)}.home-neon .community-icon-button:hover{background:#25313e;color:#fff}.home-neon .community-post>p{margin:0;padding:8px 15px 14px;color:#edf2f7;font-size:.85rem;line-height:1.62;overflow-wrap:anywhere}.home-neon .community-media{display:block;width:100%;max-height:650px;border-block:1px solid var(--social-line);background:#06090d;object-fit:contain}.home-neon .post-social-proof{display:flex;justify-content:space-between;gap:12px;padding:10px 15px;color:var(--social-muted);font-size:.65rem}.home-neon .post-actions{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:4px;margin:0 12px;padding:4px 0;border-block:1px solid var(--social-line)}.home-neon .post-actions>button,.home-neon .reaction-wrap>button{width:100%;min-height:40px;padding:0 8px;border:0;border-radius:5px;background:transparent;color:#c9d2dd;font-size:.72rem;font-weight:800}.home-neon .post-actions button:hover,.home-neon .post-actions button.active{background:#202a36;color:var(--social-cyan)}
.home-neon .reaction-wrap{position:relative}.home-neon .reaction-picker{position:absolute;z-index:30;bottom:39px;left:0;display:flex;gap:2px;padding:6px;visibility:hidden;border:1px solid var(--social-line);border-radius:999px;background:#1b2530;box-shadow:0 14px 36px rgba(0,0,0,.55);opacity:0;transform:translateY(4px);transition:.16s}.home-neon .reaction-wrap:hover .reaction-picker,.home-neon .reaction-wrap:focus-within .reaction-picker{visibility:visible;opacity:1;transform:translateY(-3px)}.home-neon .reaction-picker button{display:grid;place-items:center;width:38px;height:38px;border:0;border-radius:50%;background:transparent;font-size:1.3rem}.home-neon .reaction-picker button:hover{background:#25313d;transform:translateY(-4px) scale(1.12)}
.home-neon .post-comments{display:grid;gap:10px;margin:0;padding:12px 15px 15px}.home-neon .community-comment{display:grid;grid-template-columns:32px minmax(0,1fr);gap:8px;align-items:start}.home-neon .community-comment>span,.home-neon .post-comments form>span{display:grid;place-items:center;width:31px;height:31px;border-radius:50%;background:#273442;color:var(--social-cyan);font-size:.56rem;font-weight:900}.home-neon .community-comment>div{justify-self:start;max-width:min(100%,540px);padding:8px 11px;border-radius:7px;background:#202a35}.home-neon .community-comment strong{font-size:.68rem}.home-neon .community-comment p{margin:2px 0;color:#e8eef4;font-size:.72rem}.home-neon .community-comment small{color:var(--social-muted);font-size:.56rem}.home-neon .community-comment small button{padding:0;border:0;background:transparent;color:var(--social-cyan);font-size:inherit}.home-neon .post-comments form{display:grid;grid-template-columns:31px minmax(0,1fr) auto;align-items:center;gap:8px}.home-neon .post-comments input{width:100%;height:39px;padding:0 13px;border:1px solid transparent;border-radius:999px;background:#202a35;color:#fff;outline:0}.home-neon .post-comments input:focus{border-color:var(--social-cyan)}.home-neon .post-comments form button{height:38px;padding:0 15px;border:1px solid var(--social-cyan);border-radius:6px;background:transparent;color:var(--social-cyan);font-weight:900}.home-neon .post-comments form button:hover{background:var(--social-cyan);color:#071112}
.home-neon .community-side{display:grid;align-content:start;gap:12px}.home-neon .community-side>section{padding:12px}.home-neon .community-side header{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}.home-neon .community-side header span{color:#f1f5f8;font-size:.72rem;font-weight:900}.home-neon .community-side header button{border:0;background:transparent;color:var(--social-cyan);font-size:.62rem}.home-neon .community-sponsored{display:grid;gap:7px;padding:11px;border-radius:6px;background:linear-gradient(135deg,rgba(243,82,203,.17),rgba(80,230,230,.08))}.home-neon .community-sponsored p{margin:0;color:var(--social-muted);font-size:.68rem;line-height:1.45}.home-neon .community-side article{display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:8px;padding:9px 0;border-bottom:1px solid var(--social-line)}.home-neon .community-side article>span{display:grid;place-items:center;width:33px;height:33px;border-radius:50%;background:#263441;color:var(--social-cyan);font-size:.58rem}.home-neon .community-side article>div{display:grid;min-width:0}.home-neon .community-side article strong{overflow:hidden;font-size:.68rem;text-overflow:ellipsis;white-space:nowrap}.home-neon .community-side article small{color:var(--social-muted);font-size:.56rem}.home-neon .community-side article button{padding:6px 8px;border:1px solid var(--social-line);border-radius:5px;background:transparent;color:#fff;font-size:.58rem}.home-neon .community-side article button.active{border-color:#55e2a6;color:#78edbb}.home-neon .community-contact{display:grid;grid-template-columns:34px 1fr;align-items:center;gap:8px;width:100%;padding:7px;border:0;border-radius:6px;background:transparent;color:#fff;text-align:left}.home-neon .community-contact:hover{background:#202a35}.home-neon .community-contact>span{position:relative;display:grid;place-items:center;width:33px;height:33px;border-radius:50%;background:#263441;color:var(--social-cyan);font-size:.58rem}.home-neon .community-contact i,.home-neon .community-presence{display:block;width:9px;height:9px;border-radius:50%;background:#54e3a4}.home-neon .community-contact i{position:absolute;right:0;bottom:0}.home-neon .community-contact strong{font-size:.68rem}.home-neon .community-guidelines p{color:var(--social-muted);font-size:.68rem;line-height:1.5}
.hh-community-dialog{width:min(92vw,520px);padding:0;border:1px solid #3a4b5d;border-radius:8px;background:transparent;color:#f6f8fb;box-shadow:0 30px 90px rgba(0,0,0,.7)}.hh-community-dialog::backdrop{background:rgba(2,5,9,.72);backdrop-filter:blur(8px)}.hh-community-dialog>section{padding:18px;background:linear-gradient(145deg,#151d27,#0d131b)}.hh-community-dialog header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-bottom:12px;border-bottom:1px solid #2d3b49}.hh-community-dialog header div{display:grid}.hh-community-dialog header span{color:#50e6e6;font-size:.62rem;font-weight:900}.hh-community-dialog h5{margin:2px 0;font-size:1.18rem}.hh-community-dialog header button{display:grid;place-items:center;width:34px;height:34px;border:0;border-radius:50%;background:#25313e;color:#fff;font-size:1.25rem}.hh-community-dialog>section>p{white-space:pre-line;color:#b8c3cf;line-height:1.55}.hh-dialog-fields{display:grid;gap:11px;margin-top:12px}.hh-dialog-fields label{display:grid;gap:6px;color:#b8c3cf;font-size:.7rem;font-weight:800}.hh-dialog-fields input,.hh-dialog-fields textarea{width:100%;padding:11px;border:1px solid #354656;border-radius:6px;background:#080d13;color:#fff;outline:0;resize:vertical}.hh-dialog-fields input:focus,.hh-dialog-fields textarea:focus{border-color:#50e6e6;box-shadow:0 0 0 3px rgba(80,230,230,.09)}.hh-community-dialog footer{display:flex;justify-content:flex-end;gap:8px;margin-top:16px;padding-top:13px;border-top:1px solid #2d3b49}.hh-community-dialog footer button{min-height:39px;padding:0 15px;border:1px solid #3a4b5d;border-radius:6px;background:#202b37;color:#fff;font-weight:800}.hh-community-dialog footer button.primary{border-color:#50e6e6;background:#50e6e6;color:#071112}.hh-community-dialog footer button.danger{border-color:#ff6e84;background:#48202a;color:#ffdce2}
@keyframes hhSocialIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@media(max-width:1360px){.home-neon .community-layout{grid-template-columns:220px minmax(480px,760px)}.home-neon .community-side{display:none}}
@media(max-width:900px){.home-neon .community-hero{position:relative;grid-template-columns:1fr}.home-neon .community-hero-actions{justify-content:flex-start;flex-wrap:wrap}.home-neon .community-search{flex:1;grid-template-columns:18px minmax(120px,1fr)}.home-neon .community-layout{grid-template-columns:1fr}.home-neon .community-nav{position:relative;top:auto;display:grid;grid-template-columns:repeat(4,minmax(120px,1fr));max-height:none;overflow-x:auto}.home-neon .community-profile-card,.home-neon .community-nav section,.home-neon .community-online{display:none!important}.home-neon .community-nav>button{text-align:center}.home-neon .community-feed-status{top:8px}}
@media(max-width:620px){.home-neon .community-hero{padding:15px}.home-neon .community-hero-actions>a{width:100%;text-align:center}.home-neon .community-notification-button{flex:1}.home-neon .community-stories{grid-auto-columns:108px}.home-neon .community-story{height:165px}.home-neon .community-composer footer{grid-template-columns:1fr 1fr}.home-neon .community-composer footer>div{grid-column:1/-1}.home-neon .community-composer footer>.button{grid-column:1/-1}.home-neon .composer-media{grid-template-columns:1fr!important;margin-left:0}.home-neon .post-actions{grid-template-columns:repeat(2,1fr)}.home-neon .post-comments form{grid-template-columns:30px minmax(0,1fr)}.home-neon .post-comments form button{grid-column:2}.hh-community-dialog footer{display:grid;grid-template-columns:1fr}.hh-community-dialog footer button{width:100%}}
@media(prefers-reduced-motion:reduce){.home-neon .community-center-app *,.hh-community-dialog *{scroll-behavior:auto!important;animation:none!important;transition:none!important}}

/* Community media uploads and richer social feed */
.home-neon .community-hero-actions>.button{min-height:42px;display:inline-grid;place-items:center;padding:0 16px;border-radius:7px;text-decoration:none}.home-neon .community-composer{background:linear-gradient(180deg,#121a24,#0f161f)}.home-neon .community-composer footer>div button{display:inline-flex;align-items:center;gap:6px}.home-neon .community-composer footer>div button:first-child{color:#72e9a9}.home-neon .community-composer footer>div button:nth-child(2){color:#f5d965}.home-neon .community-composer footer>div button:nth-child(3){color:#ff8b9f}.home-neon .composer-media{grid-template-columns:minmax(0,1fr) 120px!important;padding:10px;border:1px dashed #3a4a5c;border-radius:7px;background:#0a1017}.home-neon .composer-media>input[type=file]{grid-column:1/-1;width:100%;min-height:46px;padding:7px;border:1px solid var(--social-line);background:#121b25;color:var(--social-muted)}.home-neon .composer-media>input[type=file]::file-selector-button{height:30px;margin-right:10px;padding:0 10px;border:1px solid var(--social-cyan);border-radius:5px;background:#172832;color:#d9ffff;font-weight:800;cursor:pointer}.home-neon .community-file-preview{position:relative;grid-column:1/-1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.home-neon .community-file-preview[hidden]{display:none}.home-neon .community-file-preview figure{position:relative;display:grid;grid-template-rows:minmax(110px,1fr) auto;min-width:0;margin:0;overflow:hidden;border:1px solid var(--social-line);border-radius:7px;background:#070b10}.home-neon .community-file-preview img,.home-neon .community-file-preview video{width:100%;height:160px;background:#05080c;object-fit:cover}.home-neon .community-file-preview figcaption{display:grid;min-width:0;padding:7px 9px}.home-neon .community-file-preview figcaption strong{overflow:hidden;font-size:.62rem;text-overflow:ellipsis;white-space:nowrap}.home-neon .community-file-preview figcaption small{color:var(--social-muted);font-size:.54rem}.home-neon .community-file-preview>button{position:absolute;z-index:2;top:7px;right:7px;width:30px;height:30px;border:1px solid #fff5;border-radius:50%;background:#080c11de;color:#fff;font-size:1rem}.home-neon .community-media-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px;overflow:hidden;border-block:1px solid var(--social-line);background:#06090d}.home-neon .community-media-grid--1{grid-template-columns:1fr}.home-neon .community-media-grid--3>*:first-child{grid-row:span 2}.home-neon .community-media-grid .community-media{height:100%;min-height:220px;max-height:520px;border:0;object-fit:cover}.home-neon .community-media-grid--1 .community-media{object-fit:contain}.home-neon .community-story img,.home-neon .community-story video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.home-neon .community-story small{position:relative;z-index:2;color:#d7e1ec;font-size:.54rem}.home-neon .community-post{transition:border-color .18s ease,box-shadow .18s ease}.home-neon .community-post:hover{border-color:#3a4b5d;box-shadow:0 12px 34px #0005}.home-neon .community-post.is-pinned{border-color:#e2c64b88}.home-neon .community-post.is-pinned:before{display:block;height:3px;background:linear-gradient(90deg,#f0ce4d,var(--social-pink),var(--social-cyan));content:""}.home-neon .community-side>section{overflow:hidden}.home-neon .community-sponsored{padding:12px;border-radius:7px;background:linear-gradient(135deg,#1c2935,#14212a)}.home-neon .community-sponsored p{color:var(--social-muted);font-size:.68rem}.home-neon .community-feed-status[data-state=success]{color:#6ce6a8}.home-neon .community-feed-status[data-state=error]{color:#ff8799}.home-neon .media-upload{gap:6px}.home-neon .media-upload:before{content:"＋";font-size:1.05rem}.home-neon .media-card [data-media-more]{font-size:0}.home-neon .media-card [data-media-more]:after{content:"•••";font-size:.72rem}.home-neon .media-preview-stage video{background:#05080c}
.home-neon .community-empty-suggestions{margin:8px 0 0;padding:12px;border:1px dashed var(--social-line);border-radius:7px;color:var(--social-muted);font-size:.65rem;text-align:center}
.home-neon .community-device-picker{grid-column:1/-1;display:grid!important;grid-template-columns:auto 1fr!important;align-items:center;gap:2px 10px!important;min-height:52px;padding:8px 11px;border:1px solid var(--social-line);border-radius:7px;background:#121b25;cursor:pointer}.home-neon .community-device-picker input{position:absolute!important;width:1px!important;height:1px!important;opacity:0!important}.home-neon .community-device-picker span{grid-row:1/3;align-self:center;padding:7px 10px;border:1px solid var(--social-cyan);border-radius:5px;color:#d9ffff;font-size:.66rem;font-weight:900}.home-neon .community-device-picker small{color:var(--social-muted);font-size:.55rem}.hh-community-dialog input[type=file]::file-selector-button{min-height:30px;margin-right:8px;border:1px solid #50e6e6;border-radius:5px;background:#172832;color:#e5ffff;font-weight:800}.home-neon .community-side{display:grid;align-content:start;gap:10px}
@media(min-width:1201px) and (max-width:1360px){.home-neon .community-layout{grid-template-columns:210px minmax(460px,1fr) 240px}.home-neon .community-side{display:grid}}
@media(max-width:620px){.home-neon .community-file-preview{grid-template-columns:1fr}.home-neon .community-file-preview img,.home-neon .community-file-preview video{height:210px}.home-neon .community-media-grid{grid-template-columns:1fr}.home-neon .community-media-grid--3>*:first-child{grid-row:auto}.home-neon .community-media-grid .community-media{min-height:190px;max-height:430px}.home-neon .composer-media{grid-template-columns:1fr!important}.home-neon .composer-media>input[type=file],.home-neon .community-file-preview{grid-column:auto}}
