*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #050508;
  --bg2:          #08080e;
  --card:         #0b0b11;
  --card-hover:   #0f0f18;
  --border:       rgba(255,255,255,0.09);
  --border-hover: rgba(138,121,252,0.55);
  --accent:       #8a79fc;
  --accent2:      #b0a5ff;
  --accent-soft:  rgba(138,121,252,0.15);
  --accent-faint: rgba(138,121,252,0.07);
  --cyan:         #22d3ee;
  --cyan-soft:    rgba(34,211,238,0.12);
  --green:        #4ade80;
  --green-soft:   rgba(74,222,128,0.12);
  --red:          #f87171;
  --amber:        #fbbf24;
  --text:         #f0eff8;
  --text-2:       rgba(240,239,248,0.58);
  --text-3:       rgba(240,239,248,0.30);
  --mono:         'JetBrains Mono', monospace;
  --sans:         'Space Grotesk', sans-serif;
  --display:      'Bebas Neue', sans-serif;
  --serif:        'Instrument Serif', serif;
  --r:            18px;
  --r-sm:         11px;
  --gap:          10px;
  --glow-accent:  0 0 30px rgba(138,121,252,0.22), 0 0 60px rgba(138,121,252,0.08);
  --glow-green:   0 0 20px rgba(74,222,128,0.2),  0 0 50px rgba(74,222,128,0.06);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
  min-height: 100vh;
  padding: 32px 20px 80px;
  position: relative;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(138,121,252,0.12) 0%, transparent 60%),
    linear-gradient(rgba(138,121,252,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,121,252,0.018) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,109,240,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,109,240,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(124,109,240,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.wrapper { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }

/* ── TERMINAL HEADER ── */
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  overflow: hidden;
  white-space: nowrap;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.term-dot.r { background: #ff5f57; }
.term-dot.y { background: #febc2e; }
.term-dot.g { background: #28c840; }
.term-prompt { color: var(--accent2); margin-left: 8px; flex-shrink: 0; }
.term-cmd { color: var(--text-2); overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.term-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--accent);
  opacity: 0.8;
  animation: blink 1.2s step-end infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:0.8} 50%{opacity:0} }

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: border-color 0.35s, background 0.35s, transform 0.22s, box-shadow 0.35s;
  animation: rise 0.5s ease both;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138,121,252,0.0) 20%, rgba(138,121,252,0.35) 50%, rgba(138,121,252,0.0) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: linear-gradient(135deg, rgba(138,121,252,0.055) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  box-shadow: 0 0 0 1px rgba(138,121,252,0.12), 0 8px 32px rgba(0,0,0,0.4), 0 0 40px rgba(138,121,252,0.06);
  transform: translateY(-1px);
}
.card:hover::before { opacity: 1; }
.card:hover::after  { opacity: 1; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.c1{animation-delay:.05s}.c2{animation-delay:.10s}.c3{animation-delay:.15s}
.c4{animation-delay:.18s}.c5{animation-delay:.22s}.c6{animation-delay:.26s}
.c7{animation-delay:.30s}.c8{animation-delay:.34s}.c9{animation-delay:.38s}
.c10{animation-delay:.42s}.c11{animation-delay:.46s}.c12{animation-delay:.50s}
.c13{animation-delay:.54s}.c14{animation-delay:.58s}.c15{animation-delay:.62s}

.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.8;
}
.heading {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1;
}

/* ── HERO ── */
.hero { grid-column: 1 / 8; grid-row: 1 / 3; padding: 0; overflow: hidden; }
.hero-inner { display: flex; height: 100%; min-height: 280px; }
.hero-photo {
  width: 180px; flex-shrink: 0;
  position: relative;
  background: linear-gradient(160deg, #13131a, #0e0e16);
  border-right: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: stretch; justify-content: center;
  padding: 0;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to right, rgba(124,109,240,0.025) 0px,
    rgba(124,109,240,0.025) 1px, transparent 1px, transparent 18px
  );
  z-index: 0;
}
.hero-photo::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(124,109,240,0.18) 0%, transparent 60%);
}
.hero-photo-figure {
  position: relative; z-index: 1; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.photo-silhouette {
  width: 130px; margin-bottom: 0;
  filter: drop-shadow(0 -8px 24px rgba(124,109,240,0.25));
}
.photo-name-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(10,10,13,0.95), transparent);
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.15em;
  color: var(--accent2); text-align: center; text-transform: uppercase;
}
.hero-content {
  flex: 1; min-width: 0; padding: 26px 26px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-name {
  font-family: var(--display); font-size: 52px; font-weight: 400;
  line-height: 0.92; color: var(--text); letter-spacing: 0.02em;
  margin-bottom: 10px; text-transform: uppercase;
}
.hero-name em {
  font-family: var(--serif); font-style: italic; font-size: 44px;
  color: var(--accent2); text-transform: none; letter-spacing: 0;
}
.hero-role {
  font-family: var(--mono); font-size: 10px; color: var(--accent2);
  margin-bottom: 14px; letter-spacing: 0.1em; opacity: 0.85;
}
.hero-role::before { content: '// '; color: var(--text-3); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.tag {
  font-family: var(--mono); font-size: 9px; padding: 3px 8px; border-radius: 4px;
  background: var(--accent-faint); border: 1px solid rgba(124,109,240,0.15);
  color: var(--text-3); letter-spacing: 0.06em;
}
.hero-bio {
  font-size: 12.5px; color: var(--text-2); line-height: 1.85;
  margin-bottom: 20px; font-weight: 300;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  padding: 9px 20px; border-radius: 9px; cursor: pointer;
  letter-spacing: 0.02em; transition: all 0.2s; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start; white-space: nowrap;
}
.btn-solid { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(124,109,240,0.3); }
.btn-solid:hover { background: #6a5de0; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,109,240,0.4); }
.btn-ghost { background: transparent; border: 1px solid rgba(124,109,240,0.3); color: var(--accent2); }
.btn-ghost:hover { background: var(--accent-soft); }

/* ── STATS ── */
.stat { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 2px; }
.stat-num {
  font-family: var(--display); font-size: 64px; font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 60%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat > div:first-child { filter: drop-shadow(0 0 16px rgba(138,121,252,0.45)); }
.stat-suffix {
  font-family: var(--display); font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl {
  font-family: var(--mono); font-size: 9px; color: var(--text-3);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px;
}

/* ── AVAILABILITY — completely redesigned for responsiveness ── */
.avail {
  grid-column: 11 / 13; grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px;
  /* vertical text layout that works at any height */
  writing-mode: initial;
}

.avail-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pdot 2.5s ease-in-out infinite;
}
@keyframes pdot {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.avail-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.3;
  /* wrap naturally instead of overflowing */
  word-break: break-word;
}

.avail-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.avail-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.avail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.avail-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 5px;
  opacity: 0.7;
}

.avail-item-text {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.avail-footer {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text-3);
  opacity: 0.5;
  letter-spacing: 0.08em;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  flex-shrink: 0;
}

/* ── EXPERIENCE ── */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.exp-item:first-child { padding-top: 0; }
.exp-item:last-child  { border-bottom: none; padding-bottom: 0; }
.exp-line { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; padding-top: 4px; }
.exp-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid var(--accent); background: var(--bg); position: relative;
}
.exp-dot::after {
  content: ''; position: absolute; inset: 1px; border-radius: 50%;
  background: var(--accent); opacity: 0.4;
}
.exp-track { width: 1px; flex: 1; min-height: 20px; background: linear-gradient(to bottom, var(--border), transparent); }
.exp-item:last-child .exp-track { display: none; }
.exp-role  { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.exp-co    { font-family: var(--mono); font-size: 11px; color: var(--accent2); margin-bottom: 4px; }
.exp-dates { font-family: var(--mono); font-size: 10px; color: var(--text-3); margin-bottom: 6px; letter-spacing: 0.05em; }
.exp-desc  { font-size: 12px; color: var(--text-2); line-height: 1.75; }

/* ── SERVICES ── */
.svc-list { display: flex; flex-direction: column; gap: 6px; }
.svc-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-2); transition: all 0.2s; cursor: pointer;
}
.svc-item:hover { border-color: var(--border-hover); color: var(--text); background: var(--accent-faint); transform: translateX(4px); }
.svc-icon {
  width: 28px; height: 28px; border-radius: 7px; background: var(--accent-faint);
  border: 1px solid rgba(124,109,240,0.12); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: background 0.2s;
}
.svc-item:hover .svc-icon { background: var(--accent-soft); }

/* ── CVEs & FINDINGS ── */
.findings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; align-content: start; }
.finding-card {
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--bg2);
  transition: all 0.25s; cursor: default; position: relative; overflow: hidden;
}
.finding-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
}
.finding-card.critical::before { background: var(--red); }
.finding-card.high::before     { background: var(--amber); }
.finding-card.medium::before   { background: #38bdf8; }
.finding-card:hover { border-color: var(--border-hover); background: var(--card-hover); }
.finding-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.finding-sev {
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; padding: 2px 6px; border-radius: 4px;
}
.finding-sev.critical { background: rgba(248,113,113,0.12); color: var(--red);   border: 1px solid rgba(248,113,113,0.25); }
.finding-sev.high     { background: rgba(251,191,36,0.12);  color: var(--amber); border: 1px solid rgba(251,191,36,0.25); }
.finding-sev.medium   { background: rgba(56,189,248,0.1);   color: #38bdf8;      border: 1px solid rgba(56,189,248,0.2); }
.finding-cve { font-family: var(--mono); font-size: 9px; color: var(--text-3); }
.finding-title { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.finding-desc  { font-size: 11px; color: var(--text-3); line-height: 1.6; margin-bottom: 8px; }
.finding-meta  {
  display: flex; gap: 10px;
  font-family: var(--mono); font-size: 9px; color: var(--text-3);
  border-top: 1px solid var(--border); padding-top: 7px;
}

/* ── SKILLS ── */
.skills-grid { display: flex; flex-direction: column; gap: 18px; }
.skill-cat { display: flex; flex-direction: column; gap: 8px; }
.skill-cat-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-3); padding-bottom: 6px;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.skill-cat-label svg { opacity: 0.5; }
.skill-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-chip {
  display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 7px;
  background: var(--accent-faint); border: 1px solid rgba(124,109,240,0.12);
  font-size: 11.5px; color: var(--text-2); transition: all 0.2s; cursor: default;
}
.skill-chip:hover { border-color: rgba(124,109,240,0.4); color: var(--text); background: var(--accent-soft); }
.skill-chip svg { opacity: 0.6; flex-shrink: 0; }

/* ── TOOLS ── */
.best-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tool-card {
  padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid var(--border);
  background: var(--bg2); transition: all 0.25s; cursor: default; position: relative; overflow: hidden;
}
.tool-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 100%; background: var(--accent); opacity: 0; transition: opacity 0.2s;
}
.tool-card:hover { border-color: var(--border-hover); background: var(--card-hover); }
.tool-card:hover::before { opacity: 1; }
.tool-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.tool-icon {
  width: 26px; height: 26px; border-radius: 6px; background: var(--accent-faint);
  border: 1px solid rgba(124,109,240,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tool-name { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--text); letter-spacing: 0.02em; }
.tool-cat { font-family: var(--mono); font-size: 9px; color: var(--accent2); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 5px; }
.tool-desc { font-size: 11px; color: var(--text-3); line-height: 1.6; }

/* ── TOOL PROFICIENCY DOTS ── */
.tool-prof {
  display: flex; align-items: center; gap: 3px; margin-top: 6px;
}
.prof-dot {
  width: 5px; height: 5px; border-radius: 50%;
  border: 1px solid rgba(124,109,240,0.3);
  transition: background 0.2s;
}
.prof-dot.filled { background: var(--accent); border-color: var(--accent); }

/* ── CERTIFICATIONS ── */
.cert-list { display: flex; flex-direction: column; gap: 8px; }
.cert-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  background: var(--bg2); transition: all 0.2s;
}
.cert-item:hover { border-color: var(--border-hover); }
.cert-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--accent-soft);
  border: 1px solid rgba(124,109,240,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cert-badge {
  font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.1em;
  background: var(--green-soft); color: var(--green); border: 1px solid rgba(74,222,128,0.25);
  border-radius: 4px; padding: 2px 6px; flex-shrink: 0; margin-left: auto;
}
.cert-name { font-size: 12px; color: var(--text-2); line-height: 1.4; flex: 1; }
.cert-abbr { font-family: var(--mono); font-size: 9px; color: var(--accent2); }

/* ── STAT 3 (NEW) ── */
.stat-3-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.stat-3-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(124,109,240,0.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}

/* ── HTB / PLATFORM BADGE (NEW) ── */
.htb-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
}
.htb-platform {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm); border: 1px solid var(--border);
  background: var(--bg2); transition: all 0.2s; text-decoration: none;
}
.htb-platform:hover { border-color: var(--border-hover); background: var(--card-hover); }
.htb-icon {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: -0.02em;
}
.htb-icon.htb { background: rgba(159,239,0,0.12); border: 1px solid rgba(159,239,0,0.2); color: #9fef00; }
.htb-icon.thm { background: rgba(220,85,85,0.12); border: 1px solid rgba(220,85,85,0.2); color: #dc5555; }
.htb-icon.oscp { background: rgba(124,109,240,0.15); border: 1px solid rgba(124,109,240,0.25); color: var(--accent2); }
.htb-info { flex: 1; min-width: 0; }
.htb-name { font-size: 12px; font-weight: 500; color: var(--text); }
.htb-rank { font-family: var(--mono); font-size: 9.5px; color: var(--text-3); margin-top: 1px; }
.htb-badge {
  font-family: var(--mono); font-size: 8px; padding: 2px 7px;
  border-radius: 4px; font-weight: 700; letter-spacing: 0.08em; flex-shrink: 0;
}
.htb-badge.pro { background: rgba(159,239,0,0.1); color: #9fef00; border: 1px solid rgba(159,239,0,0.2); }
.htb-badge.med { background: rgba(251,191,36,0.1); color: var(--amber); border: 1px solid rgba(251,191,36,0.2); }
.htb-badge.active { background: var(--green-soft); color: var(--green); border: 1px solid rgba(74,222,128,0.2); }

/* ── TESTIMONIALS (NEW) ── */
.quote-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 14px;
}
.quote-mark {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--serif); font-size: 80px; line-height: 1;
  color: rgba(124,109,240,0.08); pointer-events: none; user-select: none;
  font-style: italic;
}
.quote-text {
  font-family: var(--serif); font-style: italic;
  font-size: 13.5px; color: var(--text-2); line-height: 1.8;
  position: relative; z-index: 1;
}
.quote-text strong { color: var(--accent2); font-style: normal; font-family: var(--sans); font-size: 11px; font-weight: 600; }
.quote-attr {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.quote-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(124,109,240,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--accent2);
  flex-shrink: 0;
}
.quote-who { font-family: var(--mono); font-size: 9px; color: var(--text-3); letter-spacing: 0.06em; line-height: 1.5; }
.quote-who span { display: block; color: var(--text-2); font-size: 10px; }

/* ── INTERESTS ── */
.int-list { display: flex; flex-direction: column; gap: 10px; }
.int-item { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--text-2); }
.int-icon {
  width: 34px; height: 34px; border-radius: 9px; background: var(--accent-faint);
  border: 1px solid rgba(124,109,240,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── SOCIAL ── */
.social-list { display: flex; flex-direction: column; gap: 7px; }
.social-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 12px; color: var(--text-2); text-decoration: none; transition: all 0.2s;
}
.social-item:hover { border-color: var(--border-hover); color: var(--accent2); background: var(--accent-faint); transform: translateX(4px); }
.s-icon {
  width: 30px; height: 30px; border-radius: 7px; background: var(--accent-soft);
  border: 1px solid rgba(124,109,240,0.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.social-item:hover .s-icon { background: rgba(124,109,240,0.25); }
.s-label { flex: 1; min-width: 0; }
.s-handle { font-family: var(--mono); font-size: 10px; color: var(--text-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── LAYOUT ── */
.hero        { grid-column: 1 / 7;  grid-row: 1 / 3; }
.stat-1      { grid-column: 7 / 9;  grid-row: 1 / 2; }
.stat-2      { grid-column: 9 / 11;  grid-row: 1 / 2; }
.avail       { grid-column: 11 / 13; grid-row: 1 / 3; }
.exp         { grid-column: 7 / 11;  grid-row: 2 / 3; }
.svc         { grid-column: 1 / 7;   grid-row: 3 / 4; }
.skills      { grid-column: 7 / 13;  grid-row: 3 / 4; }
.best-tools  { grid-column: 1 / 7;   grid-row: 4 / 5; }
.certs       { grid-column: 7 / 13;  grid-row: 4 / 5; }

/* Row 5: stat-3 | htb | htb-badge */
.stat-3-card { grid-column: 1 / 3;   grid-row: 5 / 6; }
.htb-card    { grid-column: 3 / 13;  grid-row: 5 / 6; }

.interests   { grid-column: 1 / 4;   grid-row: 6 / 7; }
.social      { grid-column: 4 / 7;   grid-row: 6 / 7; }
.cta-card    { grid-column: 7 / 13;  grid-row: 6 / 7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  /* nothing needed here now */
}

@media (max-width: 900px) {
  body { padding: 24px 16px 64px; }
  .bento { grid-template-columns: repeat(6, 1fr); }

  .hero        { grid-column: 1 / 7; grid-row: auto; }
  .stat-1      { grid-column: 1 / 3; grid-row: auto; }
  .stat-2      { grid-column: 3 / 5; grid-row: auto; }
  .avail       { grid-column: 5 / 7; grid-row: auto; }
  .exp         { grid-column: 1 / 7; grid-row: auto; }
  .svc         { grid-column: 1 / 7; grid-row: auto; }
  .skills      { grid-column: 1 / 7; grid-row: auto; }
  .best-tools  { grid-column: 1 / 7; grid-row: auto; }
  .certs       { grid-column: 1 / 7; grid-row: auto; }
  .stat-3-card { grid-column: 1 / 3; grid-row: auto; }
  .htb-card    { grid-column: 3 / 7; grid-row: auto; }
  .htb-badge-card { grid-column: 1 / 7; grid-row: auto; }
  .interests   { grid-column: 1 / 3; grid-row: auto; }
  .social      { grid-column: 3 / 7; grid-row: auto; }
  .cta-card    { grid-column: 1 / 7; grid-row: auto; }

  .best-tools-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo  { width: 150px; }
  .hero-name   { font-size: 42px; }
  .hero-name em { font-size: 36px; }

  /* Avail on tablet: horizontal layout */
  .avail {
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body { padding: 14px 12px 56px; }
  .terminal-header { font-size: 10px; }
  .term-prompt { display: none; }

  .bento { grid-template-columns: 1fr 1fr; gap: 8px; }

  .hero        { grid-column: 1 / 3; }
  .stat-1      { grid-column: 1 / 2; }
  .stat-2      { grid-column: 2 / 3; }
  .avail       { grid-column: 1 / 3; }
  .exp, .svc, .skills, .best-tools, .certs { grid-column: 1 / 3; }
  .stat-3-card { grid-column: 1 / 2; }
  .htb-card    { grid-column: 2 / 3; }
  .htb-badge-card { grid-column: 1 / 3; }
  .interests   { grid-column: 1 / 3; }
  .social      { grid-column: 1 / 3; }
  .cta-card    { grid-column: 1 / 3; }

  .best-tools-grid { grid-template-columns: 1fr; }

  .hero-inner { flex-direction: column; }
  .hero-photo {
    width: 100%; height: 160px;
    border-right: none; border-bottom: 1px solid var(--border);
    justify-content: center; align-items: flex-end;
  }
  .hero-photo-figure { flex-direction: row; align-items: flex-end; justify-content: center; }
  .photo-silhouette { width: 90px; }
  .hero-content { padding: 20px 18px 18px; }
  .hero-name  { font-size: 36px; }
  .hero-name em { font-size: 30px; }
  .hero-bio   { font-size: 12px; }
  .stat-num   { font-size: 38px; }

  /* avail goes horizontal on mobile */
  .avail {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }
  .avail-status { flex-shrink: 0; }
  .avail-body { flex: 1; min-width: 120px; gap: 6px; }
  .avail-footer { display: none; }
  .avail-divider { width: 1px; height: auto; align-self: stretch; }

  .cta-card .btn { width: 100%; justify-content: center; align-self: stretch; }
  .svc-item { font-size: 12px; }
  .int-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

  /* htb stacks nicely at half-width */
  .htb-card { gap: 8px; }
  .htb-name { font-size: 11px; }
  .htb-rank { font-size: 8px; }
  .htb-badge { display: none; }
}

@media (max-width: 380px) {
  .bento { grid-template-columns: 1fr; }
  .hero, .stat-1, .stat-2, .avail, .exp, .svc, .skills,
  .best-tools, .certs, .stat-3-card, .htb-card,
  .interests, .social, .cta-card { grid-column: 1 / 2; }
  .int-list { grid-template-columns: 1fr; }
  .hero-name { font-size: 32px; }
  .hero-name em { font-size: 28px; }
  .avail { flex-direction: column; }
  .avail-divider { width: 100%; height: 1px; }
}

/* ── ACCESSIBILITY: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .term-cursor { animation: none; opacity: 0.8; }
  .pulse { animation: none; box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
}


/* ══ MOTION SYSTEM ══════════════════════════════════════ */
:root {
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo-in:  cubic-bezier(0.7,  0, 0.84, 0);
}

/* ── FLOATING SECTION NAV (Unconventional Navigation) ── */
.float-nav {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0; z-index: 100; pointer-events: none;
}
.fn-item {
  display: flex; align-items: center; gap: 8px;
  pointer-events: all; cursor: pointer;
  text-decoration: none; padding: 5px 0;
}
.fn-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.22s var(--ease-expo-out), transform 0.22s var(--ease-expo-out), color 0.2s;
  white-space: nowrap; user-select: none;
}
.fn-dot {
  width: 5px; height: 5px; border-radius: 50%;
  border: 1.5px solid rgba(124,109,240,0.3); background: transparent;
  transition: all 0.3s var(--ease-spring); flex-shrink: 0; display: block;
}
.fn-connector {
  width: 1px; height: 16px; align-self: flex-end; margin-right: 2px;
  background: linear-gradient(to bottom, transparent, rgba(124,109,240,0.2), transparent);
}
.fn-item:hover .fn-label { opacity: 1; transform: translateX(0); }
.fn-item:hover .fn-dot {
  border-color: var(--accent2); background: var(--accent-faint);
  transform: scale(1.6);
}
.fn-item.fn-active .fn-dot {
  background: var(--accent); border-color: var(--accent);
  width: 8px; height: 8px;
  box-shadow: 0 0 0 3px rgba(124,109,240,0.12), 0 0 12px rgba(124,109,240,0.45);
}
.fn-item.fn-active .fn-label { color: var(--accent2); opacity: 1; transform: translateX(0); }
@media (max-width: 768px) { .float-nav { display: none; } }

/* ── 3D TILT (JS-driven) ── */
.card { will-change: transform; }

/* ── HERO GLITCH ── */
.hero-name { position: relative; }
.glitch-layer {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  font-family: var(--display); font-size: inherit; font-weight: 400;
  line-height: 0.92; letter-spacing: 0.02em; text-transform: uppercase;
}
.glitch-r { color: #f87171; }
.glitch-b { color: #9d91f5; }
@keyframes glitch-r {
  0%   { opacity: 1; clip-path: inset(0 0 90% 0);  transform: translateX(-4px) skewX(-4deg); }
  25%  {             clip-path: inset(20% 0 60% 0); transform: translateX(3px) skewX(2deg); }
  50%  {             clip-path: inset(50% 0 30% 0); transform: translateX(-3px); }
  75%  {             clip-path: inset(70% 0 10% 0); transform: translateX(4px) skewX(-2deg); }
  100% { opacity: 0; clip-path: inset(100% 0 0 0);  transform: translateX(0); }
}
@keyframes glitch-b {
  0%   { opacity: 1; clip-path: inset(85% 0 0 0);   transform: translateX(4px) skewX(4deg); }
  25%  {             clip-path: inset(60% 0 25% 0);  transform: translateX(-3px) skewX(-2deg); }
  50%  {             clip-path: inset(35% 0 50% 0);  transform: translateX(3px); }
  75%  {             clip-path: inset(10% 0 80% 0);  transform: translateX(-4px) skewX(2deg); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0);   transform: translateX(0); }
}
.hero-name.do-glitch .glitch-r { animation: glitch-r 0.45s steps(1) forwards; }
.hero-name.do-glitch .glitch-b { animation: glitch-b 0.45s steps(1) 0.06s forwards; }

/* ── BUTTON RIPPLE ── */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  width: 10px; height: 10px;
  margin-top: -5px; margin-left: -5px;
  transform: scale(0); pointer-events: none;
  animation: btn-ripple 0.55s var(--ease-expo-out) forwards;
}
@keyframes btn-ripple { to { transform: scale(32); opacity: 0; } }

/* ── SKILL CHIP SHIMMER ── */
@keyframes chip-shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.skill-chip:hover {
  background: linear-gradient(90deg,
    var(--accent-faint) 0%,
    rgba(124,109,240,0.28) 40%,
    rgba(157,145,245,0.32) 50%,
    rgba(124,109,240,0.28) 60%,
    var(--accent-faint) 100%
  ) !important;
  background-size: 300% 100% !important;
  animation: chip-shine 0.65s ease forwards;
  border-color: rgba(124,109,240,0.5) !important;
  color: var(--text) !important;
}

/* ── HTB BRAND GLOW ── */
.htb-platform:hover .htb-icon.htb  { box-shadow: 0 0 14px rgba(159,239,0,0.4); }
.htb-platform:hover .htb-icon.thm  { box-shadow: 0 0 14px rgba(220,85,85,0.4); }
.htb-platform:hover .htb-icon.oscp { box-shadow: 0 0 14px rgba(124,109,240,0.5); }

/* ── CERT BADGE BREATHING ── */
@keyframes badge-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  55%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.cert-badge { animation: badge-breath 2.8s ease-in-out infinite; }

/* ── STAT GLOW ON COUNT COMPLETE ── */
@keyframes stat-flash {
  0%   { filter: brightness(1); }
  40%  { filter: brightness(1.9) drop-shadow(0 0 14px rgba(124,109,240,0.7)); }
  100% { filter: brightness(1); }
}
.stat-num.counted { animation: stat-flash 0.8s var(--ease-expo-out) forwards; }

/* ── SERVICE ITEMS STAGGER ── */
.js-ready .svc-item {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.38s var(--ease-expo-out), transform 0.38s var(--ease-expo-out);
}
.js-ready .svc-item.svc-vis { opacity: 1; transform: translateX(0); }

/* ── FINDING CARD SCAN ── */
.finding-card { overflow: hidden; }
@keyframes find-scan {
  from { transform: translateY(-100%); opacity: 0.6; }
  to   { transform: translateY(100%);  opacity: 0; }
}
.finding-card:hover::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%; pointer-events: none;
  background: linear-gradient(to bottom, rgba(124,109,240,0.06), transparent);
  animation: find-scan 0.5s var(--ease-expo-out) forwards;
}

/* ── EXP DOT PULSE ── */
@keyframes exp-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,109,240,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(124,109,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,109,240,0); }
}
.exp-dot { animation: exp-dot-pulse 2.2s ease-in-out infinite; }
.exp-item:last-child .exp-dot { animation-delay: 1.1s; }

/* ── PREFERS-REDUCED-MOTION overrides ── */
@media (prefers-reduced-motion: reduce) {
  .js-ready .svc-item { opacity: 1 !important; transform: none !important; }
  .cert-badge, .exp-dot { animation: none !important; }
  .stat-num.counted { animation: none !important; }
}

/* ui events */

.term-dot { cursor: pointer; transition: box-shadow 0.2s, transform 0.15s; }
.term-dot:hover { box-shadow: 0 0 7px currentColor; transform: scale(1.15); }
.term-dot._sl {
  animation: dot-seq-lit 0.35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes dot-seq-lit {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.7); filter: brightness(1.6); }
}


/* ── CINEMATIC EASTER EGG ──────────────────────────────────────────────── */
._v {
  position: fixed; inset: 0; z-index: 9999;
  background: #161616;
  opacity: 0; pointer-events: none;
  isolation: isolate;
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1);
}
._v.active { opacity: 1; pointer-events: all; }

._vcin {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

#_vv {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1),
              transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
._v.playing #_vv { opacity: 1; transform: scale(1); }

/* Cinematic letterbox bars */
._vlt, ._vlb {
  position: absolute; left: 0; right: 0; z-index: 2;
  background: #161616; height: 7vh;
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
._vlt { top: 0; transform: translateY(-100%); }
._vlb { bottom: 0; transform: translateY(100%); }
._v.active ._vlt { transform: translateY(0); }
._v.active ._vlb { transform: translateY(0); }

/* Radial vignette */
._vvig {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 78% 78% at 50% 50%,
    transparent 32%, rgba(0,0,0,0.78) 100%);
}

/* Dismiss hint */
._vesc {
  position: absolute; bottom: 3vh; right: 3vw; z-index: 10;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0); background: none; border: none;
  cursor: pointer; text-transform: uppercase; padding: 8px 12px;
  transition: color 0.7s ease;
}
._v.playing ._vesc { color: rgba(255,255,255,0.2); }
._vesc:hover { color: rgba(255,255,255,0.65) !important; }

/* Glitter canvas */
#_vglit {
  position: absolute; inset: 0;
  z-index: 3; pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0; transition: opacity 2s ease;
}
._v.playing #_vglit { opacity: 1; }

/* Loading pulse */
@keyframes _vpulse { 0%,100%{opacity:.2} 50%{opacity:.6} }
._vload {
  position: absolute; z-index: 5;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  animation: _vpulse 1.6s ease-in-out infinite;
  display: none;
}



.term-dot-hint {
  position: absolute; top: 28px; left: 12px;
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em;
  color: rgba(74,222,128,0.3); pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
  white-space: nowrap;
}
.terminal-header:hover .term-dot-hint { opacity: 1; }
.terminal-header { position: relative; }

/* ══ DESIGN UPGRADE PASS ═════════════════════════════════════════════ */


.hero { position: relative; }
.hero::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r) + 1px);
  background: linear-gradient(135deg,
    rgba(138,121,252,0.4) 0%,
    rgba(138,121,252,0.1) 40%,
    rgba(34,211,238,0.08) 70%,
    transparent 100%
  );
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}


#s-contact {
  border-color: rgba(138,121,252,0.25) !important;
  background: linear-gradient(135deg, rgba(138,121,252,0.06) 0%, var(--card) 60%) !important;
  box-shadow: 0 0 40px rgba(138,121,252,0.1), inset 0 1px 0 rgba(138,121,252,0.15) !important;
}


.avail {
  background: linear-gradient(160deg, rgba(74,222,128,0.04) 0%, var(--card) 50%) !important;
  border-color: rgba(74,222,128,0.14) !important;
}
.avail-label {
  font-weight: 700 !important;
  color: var(--green) !important;
  text-shadow: 0 0 15px rgba(74,222,128,0.4) !important;
}
.avail-item-text { font-size: 11px !important; color: var(--text-2) !important; }


.stat-1 {
  background: linear-gradient(160deg, rgba(138,121,252,0.08) 0%, var(--card) 70%) !important;
  border-color: rgba(138,121,252,0.2) !important;
}
.stat-2 {
  background: linear-gradient(160deg, rgba(34,211,238,0.06) 0%, var(--card) 70%) !important;
  border-color: rgba(34,211,238,0.15) !important;
}
.stat-2 .stat-num {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
}
.stat-2 > div:first-child { filter: drop-shadow(0 0 14px rgba(34,211,238,0.5)) !important; }
.stat-2 .stat-suffix {
  background: linear-gradient(135deg, var(--cyan), #22d3ee) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
}


.stat-3-card {
  background: linear-gradient(160deg, rgba(251,191,36,0.05) 0%, var(--card) 70%) !important;
  border-color: rgba(251,191,36,0.14) !important;
}
.stat-3-card .stat-num {
  background: linear-gradient(135deg, #fff 0%, var(--amber) 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
  font-size: 52px !important;
}
.stat-3-card > div:nth-child(2) { filter: drop-shadow(0 0 14px rgba(251,191,36,0.4)) !important; }
.stat-3-card .stat-suffix {
  background: linear-gradient(135deg, var(--amber), #f59e0b) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
}


.skill-cat-label {
  font-size: 9px !important;
  color: var(--accent2) !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 8px !important;
  opacity: 1 !important;
}


.exp-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 8px rgba(138,121,252,0.5) !important;
  width: 8px !important;
  height: 8px !important;
}
.exp-role {
  font-weight: 700 !important;
  color: var(--text) !important;
  font-size: 13px !important;
}
.exp-co {
  color: var(--accent2) !important;
  font-size: 11px !important;
}
.exp-dates {
  font-family: var(--mono) !important;
  font-size: 9px !important;
  color: var(--text-3) !important;
  letter-spacing: 0.1em !important;
}


.svc-item {
  border-color: rgba(138,121,252,0.12) !important;
  background: rgba(138,121,252,0.03) !important;
}
.svc-item:hover {
  border-color: rgba(138,121,252,0.35) !important;
  background: rgba(138,121,252,0.08) !important;
  box-shadow: 0 0 16px rgba(138,121,252,0.12) !important;
}
.svc-name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}


.finding-card {
  border-radius: 12px !important;
}
.finding-card.medium {
  background: rgba(251,191,36,0.04) !important;
  border-color: rgba(251,191,36,0.18) !important;
}
.finding-sev.medium {
  background: rgba(251,191,36,0.12) !important;
  color: var(--amber) !important;
  border-color: rgba(251,191,36,0.3) !important;
  box-shadow: 0 0 10px rgba(251,191,36,0.12) !important;
}


.cert-icon {
  background: rgba(138,121,252,0.1) !important;
  border-color: rgba(138,121,252,0.22) !important;
  box-shadow: 0 0 12px rgba(138,121,252,0.12) !important;
}


.htb-icon.htb  { background: rgba(138,121,252,0.15) !important; color: var(--accent2) !important; font-weight: 700 !important; }
.htb-icon.thm  { background: rgba(34,211,238,0.12) !important;  color: var(--cyan) !important;    font-weight: 700 !important; }
.htb-icon.oscp { background: rgba(74,222,128,0.12) !important;  color: var(--green) !important;   font-weight: 700 !important; }
.htb-platform  { transition: background 0.25s, border-color 0.25s, box-shadow 0.25s !important; }
.htb-platform:hover {
  background: rgba(138,121,252,0.07) !important;
  border-color: rgba(138,121,252,0.2) !important;
  box-shadow: 0 0 16px rgba(138,121,252,0.1) !important;
}


.s-icon {
  background: rgba(138,121,252,0.1) !important;
  border: 1px solid rgba(138,121,252,0.18) !important;
  border-radius: 8px !important;
}
.social-item:hover .s-icon {
  background: rgba(138,121,252,0.18) !important;
  border-color: rgba(138,121,252,0.35) !important;
  box-shadow: 0 0 12px rgba(138,121,252,0.18) !important;
}


.int-icon {
  background: rgba(138,121,252,0.08) !important;
  border: 1px solid rgba(138,121,252,0.15) !important;
}


.fn-dot {
  box-shadow: 0 0 6px rgba(138,121,252,0.3) !important;
}
.fn-item.fn-active .fn-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 10px rgba(138,121,252,0.6), 0 0 20px rgba(138,121,252,0.2) !important;
  width: 8px !important;
  height: 8px !important;
}
.fn-item:hover .fn-label {
  color: var(--accent2) !important;
  opacity: 1 !important;
}


.glitch-r { color: rgba(248,113,113,0.55) !important; }
.glitch-b { color: rgba(34,211,238,0.55) !important; }


.findings-grid { align-items: start !important; align-content: start !important; }
.best-tools { display: flex !important; flex-direction: column !important; }
.best-tools > .findings-grid { flex: 1; }


.avail-label {
  font-size: 12px !important;
  line-height: 1.25 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  word-break: keep-all !important;
  hyphens: none !important;
}






@media (min-width: 900px) {
  .hero { grid-column: 1 / 7; }
  .hero-photo { width: 180px !important; }
}


.avail-item-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 10.5px !important; }


.findings-grid { align-items: start; align-content: start; }
.svc-list { display: grid; grid-template-columns: 1fr; gap: 6px; }



