/* =====================================================
   Full Stack Lombok — style.css
   Core styles (design tokens, components, layout)
   ===================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #080b0f;
  --bg2:     #0e1318;
  --bg3:     #141b22;
  --bdr:     rgba(255,255,255,.07);
  --bdr2:    rgba(255,255,255,.14);
  --text:    #e8edf2;
  --muted:   #6b7a8d;
  --accent:  #3b9eff;
  --ac2:     #00d4aa;
  --mono:    'IBM Plex Mono', monospace;
  --sans:    'Sora', sans-serif;
  --radius:  10px;
  --shadow:  0 20px 56px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
section { position: relative; z-index: 1; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -.02em; }

.gradient-text {
  background: linear-gradient(135deg, #3b9eff, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Banner ── */
.banner {
  background: var(--bg2);
  border-bottom: 1px solid var(--bdr);
  padding: 9px 24px;
  text-align: center;
  position: relative;
  z-index: 101;
}
.banner a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.banner a:hover { color: var(--text); }
.bnew {
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: rgba(8,11,15,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.75); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-links > li > a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--text); }

.nav-dd { position: relative; }
.darr { font-size: 9px; opacity: .45; transition: transform .2s; }
.nav-dd:hover .darr { transform: rotate(180deg); }

.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--bdr2);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  z-index: 200;
  box-shadow: var(--shadow);
}
.nav-dd:hover .dd-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dd-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: all .15s;
  white-space: nowrap;
}
.dd-menu a:hover { background: var(--bg3); color: var(--text); }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  background: var(--accent);
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* ── Hamburger ── */
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 1px solid var(--bdr2);
  border-radius: 6px;
  z-index: 201;
  position: relative;
  width: 40px;
  height: 40px;
}
.ham span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ── */
.mnav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,11,15,.99);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mnav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mnav-item {
  border-bottom: 1px solid var(--bdr);
}
.mnav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.mnav-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 0;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--text) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  text-align: left;
  border-bottom: none;
}
.mnav-toggle .arr {
  font-size: 12px;
  color: var(--muted);
  transition: transform .25s;
}
.mnav-toggle.expanded .arr { transform: rotate(180deg); }

.mnav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mnav-sub.open { max-height: 600px; }
.mnav-sub a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--bdr);
  transition: color .15s;
}
.mnav-sub a:hover { color: var(--text); }

.mnav-cta {
  margin-top: 32px;
  text-align: center;
}
.mnav-cta a {
  display: inline-block;
  padding: 15px 48px;
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 72% 62% at center, black 0%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,158,255,.12) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: .45;
}
.hero h1 {
  font-size: clamp(34px, 7.5vw, 88px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 22px;
  line-height: 1.04;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.78;
}
.pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.pill {
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 13px;
  border: 1px solid var(--bdr2);
  border-radius: 100px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--accent); color: var(--text); }

/* ── Page Hero ── */
.phero {
  position: relative;
  padding: 60px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--bdr);
  overflow: hidden;
}
.phero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 72% 72% at center, black 0%, transparent 100%);
  pointer-events: none;
}
.phero-glow {
  position: absolute;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(59,158,255,.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.phero h1 {
  font-size: clamp(24px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.08;
  position: relative;
}
.phero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.76;
  position: relative;
}
.breadcrumb {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  position: relative;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { opacity: .35; }

/* ── Section Wrapper ── */
.S { max-width: 960px; margin: 0 auto; padding: 62px 24px; }
.S-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.S-label::before { content: '⟩'; color: var(--accent); font-size: 15px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  border-radius: 7px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary   { background: var(--accent); color: #000; }
.btn-primary:hover { opacity: .86; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--bdr2); }
.btn-secondary:hover { border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
.btn-wa  { background: #25d366; color: #000; }
.btn-wa:hover { opacity: .88; transform: translateY(-2px); }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Stats Bar ── */
.sbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.sbar-item {
  text-align: center;
  padding: 26px 12px;
  border-right: 1px solid var(--bdr);
}
.sbar-item:last-child { border-right: none; }
.sbar-num {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.sbar-lbl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 5px;
  display: block;
}

/* ── Cards Grid ── */
.cg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
}
.card {
  background: var(--bg2);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  display: block;
}
.card:hover { background: var(--bg3); }
.card-icon { font-size: 24px; margin-bottom: 12px; }
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--bdr2);
  border-radius: 4px;
  color: var(--muted);
  margin-top: 11px;
}

/* ── Features Grid ── */
.fg { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.fi { display: flex; flex-direction: column; gap: 9px; }
.fi-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--bdr2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  background: var(--bg2);
}
.fi h3 { font-size: 14px; font-weight: 600; }
.fi p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.split-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ── Testimonials ── */
.tg { columns: 3; column-gap: 13px; }
.tc {
  break-inside: avoid;
  margin-bottom: 13px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 18px;
  transition: border-color .2s;
}
.tc:hover { border-color: var(--bdr2); }
.tc-stars { color: #fbbf24; font-size: 12px; margin-bottom: 7px; letter-spacing: 2px; }
.tc-text { font-size: 13px; color: var(--text); line-height: 1.7; margin-bottom: 11px; }
.tc-author {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.tc-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--ac2));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

/* ── Logo Marquee ── */
.logo-sec {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.logo-lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  text-align: center;
  margin-bottom: 14px;
}
.logo-track {
  display: flex;
  gap: 10px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.lc {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.lc:hover { border-color: var(--bdr2); }
.lc em { font-style: normal; font-size: 18px; }
.lc p { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ── Portfolio ── */
.ptg { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px, 1fr)); gap: 16px; }
.pc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.pc:hover { border-color: var(--bdr2); transform: translateY(-3px); }
.pc-thumb {
  height: 155px;
  background: var(--bg3);
  border-bottom: 1px solid var(--bdr);
  overflow: hidden;
  position: relative;
}
.pc-body { padding: 18px; }
.pc-cat {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ac2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.pc h3 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.pc p  { font-size: 12px; color: var(--muted); line-height: 1.6; }
.pc-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 10px; }
.ptag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 7px;
  border: 1px solid var(--bdr2);
  border-radius: 4px;
  color: var(--muted);
}
.pc-cta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Portfolio Detail Stats ── */
.pd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.pd-stat { background: var(--bg2); padding: 18px; text-align: center; }
.pd-num { font-family: var(--mono); font-size: 20px; font-weight: 700; color: var(--accent); display: block; }
.pd-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Articles ── */
.artg { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.artc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.artc:hover { border-color: var(--bdr2); transform: translateY(-2px); }
.artc-thumb {
  height: 130px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}
.artc-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.artc:hover .artc-thumb-img { transform: scale(1.05); }
.artc-thumb-fallback {
  width: 100%; height: 100%;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.artc-body { padding: 17px; }
.artc-cat {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.artc h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.45; }
.artc p  { font-size: 12px; color: var(--muted); line-height: 1.6; }
.artc-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art-read { color: var(--accent); }

/* ── Article Detail ── */
.art-featured {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--bdr);
}
.art-featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.art-featured-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}
.ad-body h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; letter-spacing: -.02em; }
.ad-body h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
.ad-body p  { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.ad-body ul, .ad-body ol { padding-left: 20px; margin-bottom: 14px; }
.ad-body li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.ad-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 18px;
  background: var(--bg2);
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
  font-style: italic;
  color: var(--muted);
}

/* ── Detail Grid (sidebar layout) ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}
.detail-aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Jobs ── */
.jl { display: flex; flex-direction: column; gap: 10px; }
.jc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
.jc:hover { border-color: var(--bdr2); background: var(--bg3); transform: translateX(4px); }
.jc-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.jc-meta { display: flex; gap: 7px; flex-wrap: wrap; }
.jtag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--bdr2);
  border-radius: 4px;
  color: var(--muted);
}
.jtag-b { background: rgba(59,158,255,.1); border-color: rgba(59,158,255,.2); color: var(--accent); }
.jarr { font-size: 16px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.jc:hover .jarr { transform: translateX(4px); }

/* ── Job Detail ── */
.jdbox {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.badge {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
}
.badge-b  { background: rgba(59,158,255,.12);  border: 1px solid rgba(59,158,255,.25);  color: var(--accent); }
.badge-g  { background: rgba(0,212,170,.10);   border: 1px solid rgba(0,212,170,.20);   color: var(--ac2); }
.badge-gr { background: var(--bg3); border: 1px solid var(--bdr2); color: var(--muted); }

/* ── Team ── */
.tmg { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 13px; }
.tmc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 11px;
  padding: 20px 15px;
  text-align: center;
  transition: border-color .2s;
}
.tmc:hover { border-color: var(--bdr2); }
.tmc-av {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--ac2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin: 0 auto 11px;
}
.tmc h3  { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.tmc .role { font-family: var(--mono); font-size: 10px; color: var(--accent); margin-bottom: 7px; display: block; }
.tmc p { font-size: 11px; color: var(--muted); }

/* ── Gallery ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-item {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s, transform .25s;
}
.gal-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.gal-item em { font-style: normal; font-size: 36px; transition: transform .2s; z-index: 1; }
.gal-item:hover em { transform: scale(1.18); }
.gal-item > p { font-size: 11px; color: var(--muted); text-align: center; padding: 0 12px; line-height: 1.45; z-index: 1; }
.gal-zoom {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(59,158,255,.15);
  border: 1px solid rgba(59,158,255,.25);
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--accent);
  padding: 2px 7px;
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
}
.gal-item:hover .gal-zoom { opacity: 1; }
.gal-wide { grid-column: span 2; }

/* ── Gallery real photo ── */
.gal-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  transition: transform .35s ease;
  display: block;
  z-index: 0;
}
.gal-item:hover .gal-photo { transform: scale(1.06); }
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 12px 12px;
  z-index: 2;
  pointer-events: none;
  letter-spacing: .02em;
}

/* ── Lightbox ── */
.lb {
  display: none;
  position: fixed; inset: 0;
  background: rgba(4,6,10,.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}
.lb.open { display: flex; }
.lb-card {
  background: var(--bg2);
  border: 1px solid var(--bdr2);
  border-radius: 20px;
  padding: 44px 56px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  cursor: default;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: lbPop .22s ease;
}
@keyframes lbPop {
  from { opacity: 0; transform: scale(.9) translateY(12px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.lb-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 22px;
  cursor: pointer; line-height: 1;
  transition: color .15s; font-family: sans-serif;
}
.lb-close:hover { color: var(--text); }
.lb-emoji { font-size: 72px; display: block; margin-bottom: 18px; line-height: 1; }
.lb-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.lb-desc  { font-size: 13px; color: var(--muted); line-height: 1.75; }
.lb-nav {
  display: flex; align-items: center; gap: 14px;
  cursor: default;
}
.lb-count { font-family: var(--mono); font-size: 11px; color: var(--muted); min-width: 40px; text-align: center; }
.lb-btn {
  padding: 9px 22px;
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all .15s;
  border: 1px solid var(--bdr2);
  background: var(--bg3);
  color: var(--text);
}
.lb-btn.nxt { background: var(--accent); border-color: var(--accent); color: #000; }
.lb-btn:hover { opacity: .85; }

/* ── Partners Grid (2 col) ── */
.partg  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.partc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 17px;
  display: flex; align-items: center; gap: 13px;
  transition: border-color .2s;
}
.partc:hover { border-color: var(--bdr2); }
.part-logo {
  font-size: 24px; flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg3);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.partc h3 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.partc p  { font-size: 12px; color: var(--muted); }

/* ── About Stats 2x2 ── */
.astg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.asc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 20px; text-align: center;
}
.asn { font-family: var(--mono); font-size: 26px; font-weight: 700; color: var(--ac2); display: block; }
.asl { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── Pricing ── */
.prg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.prc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.prc:hover { transform: translateY(-4px); }
.prc.feat { border-color: var(--accent); }
.prc.feat:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.prc-badge {
  display: none;
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.prc.feat .prc-badge { display: block; }
.prc h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.prc-sub { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.prc-price {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin: 14px 0 16px;
  line-height: 1.1;
}
.prc-price span { font-size: 12px; color: var(--muted); font-weight: 400; }
.prc ul { list-style: none; margin-bottom: 20px; flex: 1; }
.prc ul li {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--bdr);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.prc ul li::before { content: '✓'; color: var(--ac2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Process Steps ── */
.proc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  overflow: hidden;
}
.pro-s { background: var(--bg2); padding: 22px 14px; text-align: center; }
.pro-num { font-family: var(--mono); font-size: 10px; color: var(--accent); letter-spacing: .1em; margin-bottom: 8px; display: block; }
.pro-ic  { font-size: 24px; margin-bottom: 7px; display: block; }
.pro-s h3 { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.pro-s p  { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* ── Promo ── */
.pmg { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.pmc {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 22px;
  position: relative; overflow: hidden;
  transition: border-color .2s;
}
.pmc:hover { border-color: var(--accent); }
.pmc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--ac2));
}
.pmc-lbl { font-family: var(--mono); font-size: 10px; color: var(--ac2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.pmc h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pmc p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.pmc-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px;
  background: rgba(59,158,255,.08); border: 1px solid rgba(59,158,255,.2);
  border-radius: 6px; color: var(--accent);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-q {
  width: 100%; text-align: left;
  padding: 15px 20px;
  background: none; border: none;
  color: var(--text);
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-ic { font-size: 18px; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 15px; font-size: 13px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open { border-color: var(--bdr2); }

/* ── Contact ── */
.ctcg { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.cti {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px; background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: 9px; margin-bottom: 9px;
}
.cti em { font-style: normal; font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.cti h3 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.cti p, .cti a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .15s; }
.cti a:hover { color: var(--text); }
.fgrp { margin-bottom: 15px; }
.fgrp label {
  display: block; font-family: var(--mono); font-size: 10px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px;
}
.fgrp input, .fgrp textarea, .fgrp select {
  width: 100%; background: var(--bg3); border: 1px solid var(--bdr2);
  border-radius: 7px; padding: 10px 13px;
  color: var(--text); font-family: var(--sans); font-size: 13px;
  outline: none; transition: border-color .2s;
}
.fgrp input:focus, .fgrp textarea:focus, .fgrp select:focus { border-color: var(--accent); }
.fgrp textarea { min-height: 100px; resize: vertical; }
.fgrp select option { background: var(--bg2); }
.fsub {
  width: 100%; padding: 13px;
  background: var(--accent); color: #000;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  border: none; border-radius: 8px; cursor: pointer;
  transition: opacity .2s;
}
.fsub:hover { opacity: .85; }

/* ── CTA Band ── */
.ctab { background: var(--bg3); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.ctab-inner {
  max-width: 960px; margin: 0 auto;
  padding: 50px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.ctab-text h2 { font-size: clamp(18px, 3.5vw, 26px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 6px; }
.ctab-text p  { font-size: 13px; color: var(--muted); }

/* ── Footer ── */
footer { background: var(--bg); border-top: 1px solid var(--bdr); padding: 44px 24px 26px; }
.foo { max-width: 960px; margin: 0 auto; }
.foo-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.foo-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 11px; max-width: 230px; }
.foo-col h4 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 13px; }
.foo-col ul { list-style: none; }
.foo-col ul li { margin-bottom: 8px; }
.foo-col ul li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.foo-col ul li a:hover { color: var(--text); }
.foo-bot {
  border-top: 1px solid var(--bdr); padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 11px;
}
.foo-bot p { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.foo-langs { display: flex; gap: 14px; }
.foo-langs a { font-family: var(--mono); font-size: 11px; color: var(--muted); text-decoration: none; transition: color .2s; }
.foo-langs a:hover { color: var(--text); }

/* ── Prose ── */
.prose h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.prose h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
.prose p  { font-size: 14px; color: var(--muted); line-height: 1.82; margin-bottom: 13px; }
.prose ul, .prose ol { padding-left: 18px; margin-bottom: 13px; }
.prose li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.prose blockquote {
  border-left: 3px solid var(--accent); padding: 12px 16px;
  background: var(--bg2); border-radius: 0 8px 8px 0;
  margin: 20px 0; font-style: italic; color: var(--muted);
}

/* ── Reveal Animation ── */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ── Utility ── */
.bg2 { background: var(--bg2); }
.bg3 { background: var(--bg3); }
.border-t { border-top: 1px solid var(--bdr); }
.border-b { border-bottom: 1px solid var(--bdr); }
.text-center { text-align: center; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }

/* ── Info Box ── */
.info-box {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 22px;
}
.info-box-title {
  font-family: var(--mono);
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px;
}
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--bdr);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-key { font-size: 12px; color: var(--muted); }
.info-val { font-size: 12px; font-weight: 600; }
.info-val.accent { color: var(--accent); }

/* ── Lightbox image fix ── */
#lb-img[src]:not([src=""]) { display: block !important; }
#lb .lb-card { max-width: 680px; }

/* ===== PORTFOLIO FILTER ===== */
.pf-wrap{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:36px}
.pf-btn{background:#141b22;border:1px solid #1e2a35;color:var(--muted);padding:7px 16px;border-radius:40px;font-size:12px;font-family:var(--mono);cursor:pointer;transition:all .2s;white-space:nowrap}
.pf-btn:hover{border-color:var(--accent);color:var(--accent)}
.pf-btn.active{background:var(--accent);border-color:var(--accent);color:#fff;font-weight:600}
.pf-count{background:rgba(255,255,255,.15);border-radius:20px;padding:1px 7px;font-size:10px;margin-left:4px}
.pf-btn.active .pf-count{background:rgba(255,255,255,.25)}
.pc{opacity:1;transform:scale(1);transition:opacity .25s,transform .25s}
.pc.hidden{display:none}

/* ===== PORTFOLIO DETAIL — Visit Button ===== */
.btn-primary{background:linear-gradient(135deg,var(--accent),var(--ac2));color:#fff;border:none;padding:11px 22px;border-radius:8px;font-size:13px;font-weight:600;cursor:pointer;display:inline-flex;align-items:center;gap:8px;text-decoration:none;transition:opacity .2s}
.btn-primary:hover{opacity:.85}
