@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────── */
:root {
  --bg:     #0f172a;
  --bg2:    #131c2e;
  --bg3:    #1a2540;
  --surface:#1e2d45;
  --border: rgba(255,255,255,0.06);
  --border2:rgba(56,189,248,0.22);
  --blue:   #38bdf8;
  --blue2:  #0284c7;
  --green:  #22c55e;
  --amber:  #fbbf24;
  --purple: #a78bfa;
  --red:    #f87171;
  --text:   #e5e7eb;
  --text2:  #cbd5e1;
  --text3:  #64748b;
  --glow:   rgba(56,189,248,0.15);
  --display:'Sora', sans-serif;
  --body:   'Inter', sans-serif;
  --mono:   'JetBrains Mono', monospace;
  --r:      12px;
  --r2:     8px;
  --t:      0.28s cubic-bezier(.4,0,.2,1);
}

/* Light mode */
[data-theme="light"] {
  --bg:     #f1f5f9;
  --bg2:    #e2e8f0;
  --bg3:    #cbd5e1;
  --surface:#ffffff;
  --border: rgba(0,0,0,0.08);
  --border2:rgba(2,132,199,0.3);
  --text:   #0f172a;
  --text2:  #334155;
  --text3:  #64748b;
  --glow:   rgba(2,132,199,0.1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%,   rgba(56,189,248,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%,  rgba(56,189,248,.04) 0%, transparent 60%);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue2); border-radius: 2px; }
::selection { background: rgba(56,189,248,.2); }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em;
}
h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
h4 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text2); }
.accent { color: var(--blue); }

/* ── LAYOUT ─────────────────────────────────────── */
section  { padding: 80px 0; position: relative; z-index: 1; }
.section-sm { padding: 48px 0; position: relative; z-index: 1; }
.container { max-width: 1200px; margin: auto; padding: 0 24px; }
.page-glow  { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.divider    { height: 1px; background: var(--border); margin: 0; }
.page-hero  { padding: 120px 0 60px; position: relative; z-index: 1; }

/* ── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}
[data-theme="light"] .nav { background: rgba(241,245,249,.92); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: .72rem; color: var(--text2);
  text-decoration: none; letter-spacing: .04em;
  transition: color var(--t); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--blue); border-radius: 1px;
  transition: width var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--mono) !important; font-size: .72rem !important;
  font-weight: 600 !important; color: var(--bg) !important;
  background: var(--blue); padding: 8px 18px !important;
  border-radius: 6px; transition: all var(--t) !important;
}
.nav-cta:hover { background: var(--blue2) !important; box-shadow: 0 0 20px var(--glow); }
.nav-cta::after { display: none !important; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.theme-toggle {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; width: 36px; height: 36px;
  cursor: pointer; font-size: .9rem; transition: all var(--t);
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { border-color: var(--border2); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 73px; left: 0; right: 0;
  background: rgba(15,23,42,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1.5rem 2rem; z-index: 199;
}
.mobile-menu a { font-family: var(--mono); font-size: .85rem; color: var(--text2); text-decoration: none; padding: .6rem 0; border-bottom: 1px solid var(--border); transition: color var(--t); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; padding: 11px 24px;
  border-radius: var(--r2); text-decoration: none;
  border: none; cursor: pointer; transition: all var(--t);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #000; }
.btn-primary:hover { background: var(--blue2); box-shadow: 0 0 24px var(--glow); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-outline:hover { background: rgba(56,189,248,.08); border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-sm { padding: 8px 16px; font-size: .72rem; }
.btn-lg { padding: 13px 30px; font-size: .82rem; }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,.4); border-color: rgba(56,189,248,.15); }
[data-theme="light"] .card { background: #fff; border-color: rgba(0,0,0,.06); }
[data-theme="light"] .card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.1); }

/* ── IDENTITY BAR ────────────────────────────────── */
.identity-bar {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .72rem; color: var(--blue);
  letter-spacing: .06em; padding: 6px 14px;
  background: rgba(56,189,248,.07); border: 1px solid var(--border2);
  border-radius: 4px; margin-bottom: 1rem;
}
.identity-bar::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  flex-shrink: 0;
}

/* ── EYEBROW ─────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .68rem; color: var(--blue);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .75rem;
}
.eyebrow::after { content: ''; width: 32px; height: 1px; background: var(--blue); }

/* ── STAT STRIP ──────────────────────────────────── */
.stats-strip { display: flex; gap: 1rem; flex-wrap: wrap; }
.stat-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-family: var(--mono); font-size: .78rem;
  transition: border-color var(--t), background var(--t);
}
.stat-pill:hover { background: rgba(56,189,248,.08); border-color: var(--border2); }
.stat-pill .n { color: var(--blue); font-weight: 600; }

/* ── TERMINAL ────────────────────────────────────── */
.terminal {
  background: #020617;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(34,197,94,.12), 0 0 0 1px rgba(34,197,94,.15);
  font-family: 'JetBrains Mono', monospace;
}
.terminal-bar {
  background: #0d1117; padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(34,197,94,.12);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.r { background: #ff5f56; }
.t-dot.y { background: #ffbd2e; }
.t-dot.g { background: #27c93f; }
.terminal-title { font-size: .68rem; color: #4b5563; margin-left: auto; font-family: var(--mono); }
.terminal-body { padding: 1.25rem 1.5rem; min-height: 260px; }
.t-line { font-size: .78rem; line-height: 1.9; }
.t-prompt { color: #22c55e; }
.t-warn   { color: #fbbf24; }
.t-ok     { color: #22c55e; }
.t-dim    { color: #4b5563; }
.t-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: #22c55e; vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── GATEWAY CARDS ───────────────────────────────── */
.gateway-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem; }
.gateway-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); padding: 2rem 1.75rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden; cursor: pointer;
}
.gateway-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; opacity: 0; transition: opacity var(--t);
}
.gateway-card.recruiter::before { background: linear-gradient(90deg,var(--blue2),var(--blue)); }
.gateway-card.client::before    { background: linear-gradient(90deg,#16a34a,var(--green)); }
.gateway-card.student::before   { background: linear-gradient(90deg,#7c3aed,var(--purple)); }
.gateway-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.gateway-card.recruiter:hover { border-color: rgba(56,189,248,.3); }
.gateway-card.recruiter:hover::before { opacity: 1; }
.gateway-card.client:hover { border-color: rgba(34,197,94,.3); }
.gateway-card.client:hover::before { opacity: 1; }
.gateway-card.student:hover { border-color: rgba(167,139,250,.3); }
.gateway-card.student:hover::before { opacity: 1; }
.gateway-icon { font-size: 2rem; }
.gateway-label { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.gateway-card.recruiter .gateway-label { color: var(--blue); }
.gateway-card.client    .gateway-label { color: var(--green); }
.gateway-card.student   .gateway-label { color: var(--purple); }
.gateway-card h3 { font-size: 1.25rem; font-weight: 700; }
.gateway-card p  { font-size: .88rem; color: var(--text2); line-height: 1.6; }
.gateway-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-top: .25rem; }
.gateway-card ul li { font-size: .8rem; color: var(--text3); display: flex; align-items: center; gap: 6px; }
.gateway-card ul li::before { content: '→'; color: var(--blue); font-family: var(--mono); font-size: .72rem; flex-shrink: 0; }
.gateway-card.client ul li::before  { color: var(--green); }
.gateway-card.student ul li::before { color: var(--purple); }
.gateway-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: .74rem; font-weight: 600;
  padding: 9px 18px; border-radius: 6px; margin-top: auto;
  width: fit-content; transition: all var(--t);
}
.gateway-btn.blue   { background: var(--blue);    color: #000; }
.gateway-btn.green  { background: var(--green);   color: #000; }
.gateway-btn.purple { background: var(--purple);  color: #000; }
.gateway-btn:hover  { transform: scale(1.04); }

/* ── SOC DASHBOARD ───────────────────────────────── */
.soc-dash {
  background: rgba(255,255,255,.02); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 2rem;
}
.soc-stats-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.soc-stat {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--r2); padding: .85rem; text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.soc-stat:hover { border-color: var(--border2); transform: translateY(-2px); }
.soc-stat .n { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; display: block; }
.soc-stat .n.g { color: var(--green); }
.soc-stat .n.r { color: var(--red); }
.soc-stat .l { font-family: var(--mono); font-size: .62rem; color: var(--text3); margin-top: 4px; }
.tool-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tool-tag {
  font-family: var(--mono); font-size: .66rem; padding: 4px 10px;
  border-radius: 4px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); color: var(--text3);
  transition: border-color var(--t), color var(--t);
}
.tool-tag:hover { border-color: var(--border2); color: var(--blue); }
.soc-status { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .7rem; color: var(--green); margin-top: 1rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 6px var(--green)} 50%{opacity:.6;box-shadow:0 0 16px var(--green)} }

/* ── ACHIEVEMENT BADGE ───────────────────────────── */
.achievement-badge {
  background: rgba(255,255,255,.03); border: 1px solid rgba(251,191,36,.25);
  border-radius: var(--r); padding: 1.5rem;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.achievement-badge::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg,var(--amber),#f59e0b,var(--amber));
}
.achievement-badge:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(251,191,36,.1); }
.achievement-icon { font-size: 1.8rem; flex-shrink: 0; }
.achievement-badge h4 { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
.achievement-badge p { font-size: .83rem; color: var(--text2); line-height: 1.6; }
.meta { font-family: var(--mono); font-size: .68rem; color: var(--text3); margin-top: .4rem; }

/* ── CERT CARDS ──────────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: .85rem; }
.cert-card {
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1rem 1.25rem;
  display: flex; align-items: flex-start; gap: .85rem;
  transition: border-color var(--t), transform var(--t);
}
.cert-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.cert-badge {
  font-family: var(--mono); font-size: .64rem; font-weight: 600;
  padding: 3px 9px; border-radius: 4px; white-space: nowrap;
  flex-shrink: 0; margin-top: 2px; letter-spacing: .04em;
}
.cb-blue   { background: var(--blue);   color: #000; }
.cb-green  { background: var(--green);  color: #000; }
.cb-purple { background: var(--purple); color: #000; }
.cb-amber  { background: var(--amber);  color: #000; }
.cb-prog   { background: rgba(255,255,255,.06); color: var(--blue); border: 1px solid var(--border2); }
.cb-gray   { background: rgba(255,255,255,.04); color: var(--text3); border: 1px solid var(--border); }
.cert-section-title {
  font-family: var(--display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.cert-count { font-family: var(--mono); font-size: .68rem; color: var(--blue); background: rgba(56,189,248,.1); border: 1px solid var(--border2); padding: 2px 10px; border-radius: 20px; }
.cert-info h4 { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; line-height: 1.4; }
.cert-info .org { font-size: .72rem; color: var(--text3); }
.cert-info .score { font-size: .72rem; color: var(--green); margin-top: 3px; }
.cert-info .score.neutral { color: var(--text3); }

/* ── WA FLOAT ────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-tip { background: var(--bg3); border: 1px solid var(--border2); border-radius: 8px; padding: 6px 12px; font-family: var(--mono); font-size: .7rem; color: var(--text); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity var(--t), transform var(--t); pointer-events: none; }
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn { width: 52px; height: 52px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform var(--t), box-shadow var(--t); position: relative; }
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-pulse { position: absolute; top: 0; right: 0; width: 13px; height: 13px; border-radius: 50%; background: #25d366; animation: wapulse 2s ease-out infinite; }
@keyframes wapulse { 0%{transform:scale(1);opacity:.8} 70%{transform:scale(2.2);opacity:0} 100%{opacity:0} }

/* ── HIRE ME STRIP ───────────────────────────────── */
.hire-strip {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(15,23,42,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border2);
  padding: 10px 40px;
  justify-content: center; align-items: center; gap: 1.5rem;
}
@media(min-width:900px) { .hire-strip { display: flex; } }
.hire-strip-text { font-family: var(--mono); font-size: .74rem; color: var(--text2); }
.hire-strip-text span { color: var(--blue); }
.hire-strip-close { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 1rem; line-height: 1; padding: 2px 6px; }
.hire-strip-close:hover { color: var(--text); }

/* ── OPEN TAG ────────────────────────────────────── */
.open-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: .68rem; color: var(--green);
  padding: 4px 12px; border-radius: 20px;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
}
.open-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────── */
footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding-bottom: 60px; }
.footer-inner {
  max-width: 1200px; margin: auto; padding: 48px 24px 24px;
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; justify-content: space-between;
}
.footer-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--mono); font-size: .72rem; color: var(--text3); text-decoration: none; transition: color var(--t); }
.footer-links a:hover { color: var(--blue); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.fsoc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .72rem; color: var(--text3);
  text-decoration: none; transition: all var(--t);
}
.fsoc-btn:hover { border-color: var(--border2); color: var(--blue); transform: translateY(-2px); }
.footer-copy { width: 100%; font-family: var(--mono); font-size: .68rem; color: var(--text3); padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: .5rem; text-align: center; }

/* ── REVEAL ANIMATIONS ───────────────────────────── */
.reveal     { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal-l   { opacity: 0; transform: translateX(-20px); transition: opacity .55s ease, transform .55s ease; }
.reveal-r   { opacity: 0; transform: translateX(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }

/* ── CASE STUDY STYLES ───────────────────────────── */
.cs-section { margin-bottom: 2.5rem; }
.cs-h3 { font-size: 1.05rem; font-weight: 600; color: var(--blue); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.cs-p  { font-size: .9rem; color: var(--text2); line-height: 1.8; margin-bottom: .6rem; }
.cs-p strong { color: var(--text); }
.step-row { display: flex; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.step-row:last-child { border-bottom: none; }
.step-num { font-family: var(--mono); font-size: .7rem; color: var(--blue); background: rgba(56,189,248,.08); border: 1px solid var(--border2); border-radius: 4px; padding: 3px 10px; flex-shrink: 0; margin-top: 2px; }
.step-row h4 { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.ioc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .75rem; margin-top: .75rem; }
.ioc-item { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r2); padding: .85rem 1rem; }
.ioc-type { font-family: var(--mono); font-size: .65rem; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.ioc-val  { font-family: var(--mono); font-size: .78rem; color: var(--green); word-break: break-all; }
.inline-code { font-family: var(--mono); font-size: .8rem; background: rgba(255,255,255,.05); padding: 1px 6px; border-radius: 3px; color: var(--green); }
.finding-card { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; margin-bottom: 1rem; }
.finding-critical { border-left: 3px solid var(--red); }
.finding-high     { border-left: 3px solid var(--amber); }
.finding-medium   { border-left: 3px solid var(--blue); }
.finding-low      { border-left: 3px solid var(--text3); }
.finding-header   { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; flex-wrap: wrap; }
.finding-id { font-family: var(--mono); font-size: .7rem; font-weight: 600; color: var(--text3); background: rgba(255,255,255,.05); padding: 2px 8px; border-radius: 3px; }
.finding-header > span:nth-child(2) { font-weight: 600; font-size: .92rem; flex: 1; }
.finding-cvss { font-family: var(--mono); font-size: .7rem; color: var(--amber); background: rgba(251,191,36,.1); padding: 2px 8px; border-radius: 3px; border: 1px solid rgba(251,191,36,.2); }
.finding-critical .finding-cvss { color: var(--red); background: rgba(248,113,113,.1); border-color: rgba(248,113,113,.2); }

/* ── BLOG ────────────────────────────────────────── */
.blog-card { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--t); text-decoration: none; display: block; color: inherit; }
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.blog-thumb { height: 110px; background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border-bottom: 1px solid var(--border); position: relative; }
.thumb-cat { position: absolute; bottom: 8px; left: 10px; font-family: var(--mono); font-size: .62rem; color: var(--blue); background: rgba(56,189,248,.1); border: 1px solid var(--border2); padding: 2px 8px; border-radius: 20px; }
.blog-body { padding: 1.1rem 1.4rem; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: .4rem; }
.blog-cat  { font-family: var(--mono); font-size: .64rem; color: var(--blue); letter-spacing: .06em; }
.blog-date { font-family: var(--mono); font-size: .64rem; color: var(--text3); }
.blog-card h3 { font-size: .93rem; font-weight: 600; line-height: 1.4; margin-bottom: .4rem; color: var(--text); }
.blog-card p  { font-size: .83rem; color: var(--text2); line-height: 1.6; margin-bottom: .6rem; }
.read-link { font-family: var(--mono); font-size: .7rem; color: var(--blue); }

/* ── ARTICLE ─────────────────────────────────────── */
.article-p    { font-size: .93rem; color: var(--text2); line-height: 1.8; margin-bottom: 1.1rem; }
.article-p strong { color: var(--text); }
.article-h3   { font-size: 1.05rem; font-weight: 600; color: var(--blue); margin: 2rem 0 .75rem; }
.article-list { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.article-list li { font-size: .9rem; color: var(--text2); line-height: 1.7; }
.article-list li strong { color: var(--text); }

/* ── CONTACT ─────────────────────────────────────── */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; font-size: .9rem; }
.c-icon { width: 40px; height: 40px; border-radius: var(--r2); background: rgba(255,255,255,.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: border-color var(--t); }
.contact-item:hover .c-icon { border-color: var(--border2); }
.c-label { font-family: var(--mono); font-size: .68rem; color: var(--text3); letter-spacing: .06em; display: block; margin-bottom: 2px; }
.social-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; text-decoration: none; color: var(--text2); font-family: var(--mono); font-size: .72rem; transition: all var(--t); }
.social-pill:hover { border-color: var(--border2); color: var(--blue); transform: translateY(-2px); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-family: var(--mono); font-size: .68rem; color: var(--text3); letter-spacing: .08em; text-transform: uppercase; }
.form-group input,.form-group textarea,.form-group select { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--r2); color: var(--text); font-family: var(--body); font-size: .9rem; padding: 11px 14px; outline: none; transition: border-color var(--t), box-shadow var(--t); resize: vertical; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color: var(--blue2); box-shadow: 0 0 0 3px rgba(56,189,248,.08); }
.form-group select option { background: var(--bg2); }

/* ── PRICING ─────────────────────────────────────── */
.price-card { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--r); padding: 2rem; display: flex; flex-direction: column; gap: .75rem; position: relative; overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.price-card.featured { border-color: var(--blue2); }
.price-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue2),var(--blue)); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.price-features li { font-size: .85rem; color: var(--text2); display: flex; align-items: flex-start; gap: 8px; }
.price-features li::before { content: "✓"; color: var(--blue); font-family: var(--mono); font-size: .78rem; flex-shrink: 0; margin-top: 2px; }
.price-features li.no::before { content: "–"; color: var(--text3); }
.price-features li.no { opacity: .5; }

/* ── ROLE ROW ────────────────────────────────────── */
.role-row { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r2); padding: .7rem 1rem; font-size: .84rem; transition: all var(--t); }
.role-row:hover { border-color: var(--border2); transform: translateX(4px); }
.role-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue); flex-shrink: 0; margin-top: 5px; }
.role-date { font-family: var(--mono); font-size: .68rem; color: var(--text3); margin-left: auto; padding-left: 8px; white-space: nowrap; }

/* ── FILTER TABS ─────────────────────────────────── */
.filter-btn { font-family: var(--mono); font-size: .72rem; padding: 7px 16px; border-radius: 6px; border: 1px solid var(--border); color: var(--text2); cursor: pointer; background: transparent; transition: all var(--t); }
.filter-btn:hover, .filter-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(56,189,248,.08); }

/* ── CASE CARDS ──────────────────────────────────── */
.case-card { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--t); text-decoration: none; display: block; color: inherit; }
.case-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.case-thumb { height: 110px; background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: center; font-size: 2rem; border-bottom: 1px solid var(--border); position: relative; }
.sev-badge { position: absolute; top: 10px; right: 10px; font-family: var(--mono); font-size: .62rem; font-weight: 600; padding: 3px 8px; border-radius: 3px; border: 1px solid; }
.sev-critical { background: rgba(248,113,113,.15); color: var(--red); border-color: rgba(248,113,113,.3); }
.sev-high     { background: rgba(251,191,36,.12); color: var(--amber); border-color: rgba(251,191,36,.25); }
.case-body    { padding: 1.25rem 1.5rem; }
.case-tag     { font-family: var(--mono); font-size: .65rem; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .45rem; }
.case-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .45rem; line-height: 1.4; color: var(--text); }
.case-card p  { font-size: .83rem; color: var(--text2); line-height: 1.6; margin-bottom: .75rem; }
.case-tools   { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .65rem; }
.case-tools span { font-family: var(--mono); font-size: .63rem; padding: 2px 7px; border-radius: 3px; background: rgba(255,255,255,.04); color: var(--text3); border: 1px solid var(--border); }
.case-link    { font-family: var(--mono); font-size: .72rem; color: var(--blue); }
.full-badge   { font-family: var(--mono); font-size: .6rem; padding: 2px 7px; border-radius: 3px; background: rgba(34,197,94,.1); color: var(--green); border: 1px solid rgba(34,197,94,.2); margin-left: 6px; vertical-align: middle; }

/* ── SERVICES ────────────────────────────────────── */
.svc-card { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; position: relative; overflow: hidden; transition: all var(--t); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--blue),transparent); opacity: 0; transition: opacity var(--t); }
.svc-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { font-size: 1.5rem; }
.svc-card h3 { font-size: 1rem; font-weight: 600; }
.svc-card p  { font-size: .85rem; color: var(--text2); line-height: 1.65; flex: 1; }

/* ── COURSE CARD ─────────────────────────────────── */
.course-card { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; transition: all var(--t); }
.course-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.course-icon { font-size: 1.4rem; }
.course-card h4 { font-size: .95rem; font-weight: 600; }
.course-card p  { font-size: .83rem; color: var(--text2); line-height: 1.65; flex: 1; }
.course-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.course-meta span { font-family: var(--mono); font-size: .68rem; padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,.04); color: var(--text3); border: 1px solid var(--border); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media(max-width: 900px) {
  .nav { padding: .85rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .theme-toggle { display: flex; }
  section, .section-sm { padding: 56px 0; }
  .gateway-grid { grid-template-columns: 1fr; }
  .soc-stats-grid { grid-template-columns: repeat(3,1fr); }
  .hire-strip { display: none !important; }
  .page-hero { padding: 100px 0 48px; }
}
@media(max-width: 600px) {
  .soc-stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-strip { gap: .6rem; }
  .stat-pill { font-size: .72rem; padding: 8px 12px; }
}
