html,
body,
.wp-site-blocks,
.site,
.site-content,
.content-area,
.entry-content,
.wp-block-post-content,
main,
#page {
  background: #000 !important;
  background-image: none !important;
  color: #f5f3ff;
}

.entry-title,
.wp-block-post-title,
.post-title,
.page-title,
h1.wp-block-post-title,
.entry-header {
  display: none !important;
}

body,
.wp-site-blocks {
  margin: 0 !important;
  padding: 0 !important;
}

.is-layout-constrained > * {
  max-width: 100% !important;
}

* {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(168, 85, 247, 0.24);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f3ff;
  --muted: #b6adc8;
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --purple-3: #d8b4fe;
  --shadow: 0 0 24px rgba(139, 92, 246, 0.22);
  --shadow-strong: 0 0 42px rgba(139, 92, 246, 0.30);
  --radius: 24px;
  --max-width: 1220px;
}

html {
  scroll-behavior: smooth;
}

.jn-portfolio {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #000 !important;
  overflow: hidden;
}

.jn-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -100px;
  background: var(--purple);
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -140px;
  background: var(--purple-2);
  animation: floatOrb 16s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, 18px, 0) scale(1.07);
  }
}

.jn-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  z-index: 0;
}

.jn-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 20px 70px;
}

.jn-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  position: sticky;
  top: 16px;
  z-index: 99;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.75);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.jn-logo {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.jn-logo span {
  color: var(--purple-3);
  text-shadow: 0 0 16px rgba(216, 180, 254, 0.45);
}

.jn-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.jn-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.jn-nav-links a:hover {
  color: #fff;
}

.jn-menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.jn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 26px rgba(139,92,246,0.34);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.jn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(168,85,247,0.45);
  filter: brightness(1.05);
}

.jn-btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 16px rgba(139,92,246,0.14);
}

.jn-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
  padding: 72px 0 30px;
}

.jn-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #eadcff;
  font-size: 0.92rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(216,180,254,0.24);
  box-shadow: 0 0 18px rgba(139,92,246,0.14);
}

.jn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-3);
  box-shadow: 0 0 14px var(--purple-3);
}

.jn-name {
  color: #e9dcff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.jn-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 14px;
}

.jn-hero-copy h1 span {
  color: var(--purple-3);
  text-shadow: 0 0 20px rgba(216,180,254,0.36);
}

#jn-typing::after {
  content: "|";
  margin-left: 4px;
  color: var(--purple-3);
  animation: blink 0.85s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.jn-subtext {
  max-width: 620px;
  font-size: 1.03rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.jn-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.jn-stat-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.jn-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.jn-stat-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.jn-stat-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.jn-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jn-profile-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.jn-profile-img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 28px rgba(139, 92, 246, 0.14),
    0 0 60px rgba(168, 85, 247, 0.08);
  transition: transform 0.4s ease;
}

.jn-profile-card:hover .jn-profile-img {
  transform: scale(1.015);
}

.jn-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8,8,12,0.78);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 24px rgba(139,92,246,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 3;
}

.jn-floating-card strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.jn-floating-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.jn-float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(216,180,254,0.2);
  flex-shrink: 0;
}

.fc-1 {
  top: 20px;
  right: -26px;
}

.fc-2 {
  left: -30px;
  bottom: 90px;
  animation-delay: 1.5s;
}

.fc-3 {
  right: 20px;
  bottom: -22px;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.jn-section {
  padding: 44px 0;
}

.jn-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 20px;
}

.jn-section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.jn-section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

.jn-kicker {
  color: var(--purple-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.jn-grid {
  display: grid;
  gap: 18px;
}

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

.jn-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.25s ease;
}

.jn-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(168,85,247,0.22), transparent 70%);
  pointer-events: none;
}

.jn-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.jn-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(216,180,254,0.22);
  box-shadow: 0 0 18px rgba(139,92,246,0.18);
  font-size: 1.2rem;
}

.jn-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.jn-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.jn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.jn-filter {
  background: rgba(255,255,255,0.04);
  color: #eadcff;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.jn-filter:hover,
.jn-filter.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: transparent;
  box-shadow: 0 0 20px rgba(139,92,246,0.28);
  transform: translateY(-1px);
}

.tool-item {
  opacity: 0;
  transform: translateY(8px);
}

.tool-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.jn-tool-icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(216, 180, 254, 0.22);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.18);
  margin-bottom: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jn-tool-icon-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.jn-tool-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.28));
}

.jn-tool-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  z-index: 1;
}

.jn-tool-icon-wrap.is-fallback .jn-tool-logo {
  display: none;
}

.jn-tool-icon-wrap.is-fallback .jn-tool-fallback {
  display: flex;
}

.jn-card:hover .jn-tool-icon-wrap {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.28);
}

.jn-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jn-industries-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,85,247,0.18);
  color: #eadcff;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.jn-industries-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(168,85,247,0.34);
  box-shadow: 0 0 18px rgba(139,92,246,0.16);
}

.jn-contact-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(139,92,246,0.14), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
}

.jn-contact-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 12px;
}

.jn-contact-copy {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 22px;
}

.jn-contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.jn-contact-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #eadcff;
  font-size: 0.95rem;
}

.jn-footer {
  text-align: center;
  padding-top: 24px;
  color: #8f86a7;
  font-size: 0.92rem;
}

.jn-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1024px) {
  .jn-hero,
  .jn-grid.three,
  .jn-stats {
    grid-template-columns: 1fr;
  }

  .jn-section-head {
    flex-direction: column;
    align-items: start;
  }

  .jn-profile-card {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .jn-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .jn-nav {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .jn-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .jn-nav-links.show {
    display: flex;
  }

  .jn-nav > .jn-btn {
    display: none;
  }

  .jn-wrap {
    padding: 16px 16px 60px;
  }

  .jn-hero {
    padding-top: 40px;
  }

  .jn-profile-card {
    max-width: 100%;
    padding: 12px;
  }

  .jn-floating-card {
    min-width: 128px;
    max-width: 170px;
    padding: 10px 12px;
    border-radius: 16px;
    animation: floatCardMobile 6s ease-in-out infinite;
  }

  .jn-floating-card strong {
    font-size: 0.84rem;
  }

  .jn-floating-card small {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .jn-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .fc-1 {
    top: 12px;
    right: 8px;
  }

  .fc-2 {
    left: 8px;
    bottom: 78px;
  }

  .fc-3 {
    right: 8px;
    bottom: 10px;
  }

  .jn-contact-card {
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .jn-hero-copy h1 {
    font-size: 2.45rem;
  }

  .jn-floating-card {
    min-width: 118px;
    max-width: 148px;
    gap: 8px;
    padding: 9px 10px;
  }

  .jn-floating-card strong {
    font-size: 0.78rem;
  }

  .jn-floating-card small {
    font-size: 0.67rem;
  }

  .jn-float-icon {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .fc-1 {
    top: 10px;
    right: 6px;
  }

  .fc-2 {
    left: 6px;
    bottom: 66px;
  }

  .fc-3 {
    right: 6px;
    bottom: 6px;
  }
}

@keyframes floatCardMobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}