/* sisakulint landing page — extends sisaku-theme.css */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.sk-landing {
  background: var(--sk-bg);
  color: var(--sk-text);
  font-family: var(--sk-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle grid background */
body.sk-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(63,185,80,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,185,80,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
  z-index: 0;
}

.sk-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============ NAVBAR ============ */
.sk-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 14, 20, 0.72);
  border-bottom: 1px solid var(--sk-border);
}
.sk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.sk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sk-text);
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}
.sk-brand-dot {
  width: 8px; height: 8px;
  background: var(--sk-green);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--sk-green);
  flex-shrink: 0;
}
.sk-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.sk-brand-name {
  font-family: var(--sk-font-mono);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.sk-brand-tag {
  color: var(--sk-text-dim);
  font-family: var(--sk-font-sans);
  font-weight: 400;
  font-size: 11.5px;
  margin-top: 3px;
  letter-spacing: 0.005em;
  white-space: normal;
  max-width: 720px;
}
@media (max-width: 720px) {
  .sk-brand-tag { display: none; }
}
.sk-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.sk-nav-links a {
  color: var(--sk-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.sk-nav-links a:hover { color: var(--sk-text); }
.sk-nav-cta {
  padding: 7px 14px;
  border: 1px solid var(--sk-border-2);
  border-radius: var(--sk-radius-sm);
  background: var(--sk-bg-elev);
  font-family: var(--sk-font-mono);
  font-size: 13px;
  color: var(--sk-text) !important;
}
.sk-nav-cta:hover {
  border-color: var(--sk-green);
  color: var(--sk-green-2) !important;
}

/* ============ HERO ============ */
:root {
  --sk-neon-pink:    #ff2d92;
  --sk-neon-cyan:    #00e5ff;
  --sk-neon-magenta: #ff00f0;
  --sk-neon-purple:  #c084fc;
}
.sk-hero {
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- HERO BACKGROUND LAYERS ---------- */
.sk-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* glowing neon blobs */
.sk-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.sk-hero-blob-pink {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--sk-neon-pink) 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: sk-blob-drift 9s ease-in-out infinite alternate;
}
.sk-hero-blob-cyan {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--sk-neon-cyan) 0%, transparent 70%);
  bottom: -160px; right: -80px;
  animation: sk-blob-drift 11s ease-in-out infinite alternate-reverse;
}
.sk-hero-blob-purple {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--sk-neon-purple) 0%, transparent 70%);
  top: 30%; right: 30%;
  opacity: 0.35;
  animation: sk-blob-drift 13s ease-in-out infinite alternate;
}
@keyframes sk-blob-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}

/* Cyber moon (top-right corner of hero) */
.sk-hero-moon {
  position: absolute;
  top: 96px;
  right: 9%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 38%, rgba(180,140,110,0.22) 0 6%, transparent 6%),
    radial-gradient(circle at 42% 62%, rgba(180,140,110,0.18) 0 4%, transparent 4%),
    radial-gradient(circle at 72% 60%, rgba(180,140,110,0.22) 0 3.5%, transparent 3.5%),
    radial-gradient(circle at 30% 30%, #fff4dc, #ffcf95 55%, #f0a060 95%);
  box-shadow:
    0 0 30px rgba(255, 200, 130, 0.4),
    0 0 80px rgba(255, 100, 80, 0.28),
    inset -10px -12px 22px rgba(0, 0, 0, 0.22);
  z-index: 0;
}
@media (max-width: 1100px) {
  .sk-hero-moon { right: 24px; width: 60px; height: 60px; top: 80px; }
}
@media (max-width: 720px) {
  .sk-hero-moon { width: 48px; height: 48px; }
}

/* Tokyo skyline silhouette at bottom */
.sk-hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 130px;
  display: block;
  filter: drop-shadow(0 -2px 12px rgba(255, 45, 146, 0.5));
}

/* retrowave grid floor */
.sk-hero-grid-floor {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 220%;
  height: 240px;
  transform: translateX(-50%) perspective(420px) rotateX(62deg);
  transform-origin: bottom center;
  background-image:
    linear-gradient(rgba(255, 45, 146, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.45) 1px, transparent 1px);
  background-size: 60px 40px;
  -webkit-mask-image: linear-gradient(to top, black 5%, transparent 90%);
          mask-image: linear-gradient(to top, black 5%, transparent 90%);
  opacity: 0.55;
}

/* CRT scanlines */
.sk-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.025) 2px 3px);
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

/* keep content layered above bg */
.sk-hero > .sk-container { position: relative; z-index: 2; }

/* ---------- MASCOT (kawaii cyberpunk anime sidekick) ---------- */
/* Mascot: locked size/position, independent of grid/content layout */
.sk-mascot-wrap {
  position: absolute;
  bottom: 28px;
  right: max(24px, calc(50% - 560px));
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  /* fixed footprint regardless of viewport */
  width: 120px;
}
.sk-mascot {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #000;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 0 0 4px rgba(0, 229, 255, 0.4),
    0 0 28px rgba(0, 229, 255, 0.6),
    0 0 80px rgba(255, 45, 146, 0.35);
  animation: sk-mascot-float 4.5s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}
.sk-mascot-tag {
  font-family: var(--sk-font-mono);
  font-size: 11px;
  color: var(--sk-neon-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.4);
  text-shadow: 0 0 6px var(--sk-neon-cyan);
  backdrop-filter: blur(6px);
}
@keyframes sk-mascot-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
/* size/position locked across viewports — only hide on mobile where it can't fit */
@media (max-width: 900px) {
  .sk-mascot-wrap { display: none; }
}

/* ---------- H1 NEON ACCENT ---------- */
.sk-hero h1 .sk-accent {
  background: linear-gradient(90deg, var(--sk-neon-cyan), var(--sk-neon-pink));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 45, 146, 0.4);
}
.sk-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .sk-hero { padding: 56px 0 40px; }
  .sk-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.sk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sk-green-soft);
  border: 1px solid rgba(63, 185, 80, 0.25);
  color: var(--sk-green-2);
  font-family: var(--sk-font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.sk-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sk-green);
  box-shadow: 0 0 8px var(--sk-green);
}

.sk-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--sk-text);
}
.sk-hero-sub {
  font-size: 18px;
  color: var(--sk-text-muted);
  max-width: 540px;
  margin: 0 0 24px;
}
.sk-hero-emph {
  color: var(--sk-text);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(63,185,80,0.22) 60%);
  padding: 0 2px;
}


.sk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.sk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--sk-radius-sm);
  font-family: var(--sk-font-mono);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sk-btn-primary {
  background: var(--sk-green);
  color: #0a0e14;
  border-color: var(--sk-green);
  box-shadow: 0 0 0 0 rgba(63,185,80,0.4);
}
.sk-btn-primary:hover {
  background: var(--sk-green-2);
  box-shadow: 0 0 0 4px rgba(63,185,80,0.18);
  transform: translateY(-1px);
}
.sk-btn-ghost {
  background: var(--sk-bg-elev);
  color: var(--sk-text);
  border-color: var(--sk-border-2);
}
.sk-btn-ghost:hover {
  border-color: var(--sk-border-3);
  background: var(--sk-bg-card);
  transform: translateY(-1px);
}
.sk-btn svg { width: 16px; height: 16px; }

.sk-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  color: var(--sk-text-dim);
  font-size: 13px;
  font-family: var(--sk-font-mono);
}
.sk-hero-meta span::before {
  content: "✓";
  color: var(--sk-green);
  margin-right: 6px;
  font-weight: 600;
}

/* ============ TERMINAL DEMO ============ */
.sk-term {
  background: var(--sk-bg-inset);
  border: 1px solid var(--sk-border-2);
  border-radius: var(--sk-radius);
  overflow: hidden;
  box-shadow: var(--sk-shadow);
  font-family: var(--sk-font-mono);
  font-size: 13px;
  line-height: 1.6;
}
.sk-term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--sk-bg-elev);
  border-bottom: 1px solid var(--sk-border);
}
.sk-term-bar i {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.sk-term-bar i:nth-child(1) { background: #ff5f57; }
.sk-term-bar i:nth-child(2) { background: #febc2e; }
.sk-term-bar i:nth-child(3) { background: #28c840; }
.sk-term-bar .sk-term-title {
  margin-left: auto;
  color: var(--sk-text-dim);
  font-size: 12px;
}
.sk-term-body {
  padding: 16px 18px;
  color: var(--sk-text);
  min-height: 360px;
  overflow-x: auto;
  font-size: 12.5px;
  line-height: 1.65;
}
.sk-term-line {
  display: block;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* indent wrapped continuation of long diagnostic lines so they read more naturally */
.sk-term-line + .sk-term-line { padding-top: 0; }
.sk-term-prompt  { color: var(--sk-green); }
.sk-term-user    { color: var(--sk-blue); }
.sk-term-path    { color: var(--sk-blue); }
.sk-term-cmd     { color: var(--sk-text); }
.sk-term-dim     { color: var(--sk-text-dim); }
.sk-term-ok      { color: var(--sk-green-2); font-weight: 600; }
.sk-term-warn    { color: var(--sk-amber); }
.sk-term-err     { color: var(--sk-red); }
.sk-term-info    { color: var(--sk-blue); }
.sk-term-pointer { color: var(--sk-green); font-weight: 600; }
/* severity tags inside diagnostic lines */
.sk-sev-crit  { color: var(--sk-red); font-weight: 600; }
.sk-sev-high  { color: var(--sk-red); font-weight: 600; }
.sk-sev-med   { color: var(--sk-amber); font-weight: 600; }
.sk-sev-low   { color: var(--sk-blue); font-weight: 600; }
.sk-rule-tag  { color: var(--sk-purple); }

.sk-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--sk-green);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: sk-blink 1s steps(2) infinite;
}
@keyframes sk-blink { 50% { opacity: 0; } }

/* ============ STAT STRIP ============ */
.sk-stats {
  padding: 24px 0 56px;
  position: relative;
}
.sk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .sk-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.sk-stat {
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  padding: 20px 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.sk-stat:hover {
  border-color: var(--sk-border-2);
  transform: translateY(-2px);
}
.sk-stat-num {
  font-family: var(--sk-font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--sk-green-2);
  line-height: 1;
}
.sk-stat-label {
  margin-top: 8px;
  color: var(--sk-text-muted);
  font-size: 13px;
}

/* ============ SECTION SHELL ============ */
.sk-section { padding: 72px 0; position: relative; }
.sk-section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.sk-section-lede {
  color: var(--sk-text-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 0 40px;
}
.sk-section-tag {
  display: inline-block;
  font-family: var(--sk-font-mono);
  font-size: 12px;
  color: var(--sk-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ============ FEATURE CARDS ============ */
.sk-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .sk-features { grid-template-columns: 1fr; } }
.sk-feature {
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.sk-feature:hover { border-color: var(--sk-border-2); transform: translateY(-2px); }
.sk-feature-icon {
  width: 36px; height: 36px;
  border-radius: var(--sk-radius-sm);
  background: var(--sk-green-soft);
  border: 1px solid rgba(63,185,80,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sk-green-2);
  margin-bottom: 14px;
}
.sk-feature h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
}
.sk-feature p { margin: 0; color: var(--sk-text-muted); font-size: 14px; }

/* ============ COMPARISON TABLE ============ */
.sk-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  overflow: hidden;
  font-size: 14px;
}
.sk-compare th, .sk-compare td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sk-border);
  text-align: center;
}
.sk-compare th {
  background: var(--sk-bg-elev);
  color: var(--sk-text);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--sk-font-mono);
  letter-spacing: 0;
}
.sk-compare th:first-child {
  font-family: var(--sk-font-sans);
  color: var(--sk-text-muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sk-compare th:first-child, .sk-compare td:first-child {
  text-align: left;
  font-weight: 500;
}
.sk-compare tbody tr:last-child td { border-bottom: none; }
.sk-compare .sk-us {
  background: rgba(63, 185, 80, 0.06);
  color: var(--sk-green-2);
  font-weight: 600;
}
.sk-yes  { color: var(--sk-green-2); }
.sk-no   { color: var(--sk-text-dim); }
.sk-lim  { color: var(--sk-amber); }

/* ============ BAR CHART (CI build time) ============ */
.sk-chart-wrap {
  margin-top: 48px;
  padding: 28px;
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
}
.sk-chart-head {
  margin-bottom: 22px;
}
.sk-chart-head .sk-section-tag { display: inline-block; margin: 0 0 8px; }
.sk-chart-head h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--sk-text);
}
.sk-chart-head p {
  margin: 0;
  color: var(--sk-text-muted);
  font-size: 14px;
  max-width: 620px;
}
.sk-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--sk-font-mono);
}
.sk-chart-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 16px;
}
@media (max-width: 640px) {
  .sk-chart-row { grid-template-columns: 130px 1fr 50px; gap: 10px; }
}
.sk-chart-label {
  font-size: 13px;
  color: var(--sk-text-muted);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sk-chart-label-us {
  color: var(--sk-green-2);
  font-weight: 600;
}
.sk-chart-track {
  background: var(--sk-bg-inset);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius-sm);
  height: 26px;
  overflow: hidden;
  position: relative;
}
/* subtle gridlines at 25 / 50 / 75 / 100 */
.sk-chart-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--sk-border) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: 0.6;
}
.sk-chart-bar {
  position: relative;
  z-index: 1;
  height: 100%;
  width: var(--sk-w, 0);
  background: linear-gradient(90deg, rgba(210,153,34,0.7), rgba(248,81,73,0.85));
  transform-origin: left center;
  transform: scaleX(0);
  animation: sk-chart-grow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.sk-chart-bar-us {
  background: linear-gradient(90deg, var(--sk-green), var(--sk-green-2));
  box-shadow: 0 0 16px rgba(63, 185, 80, 0.35), inset 0 0 0 1px rgba(86,211,100,0.4);
}
.sk-chart-value {
  font-size: 14px;
  color: var(--sk-text-muted);
  text-align: left;
  font-weight: 500;
}
.sk-chart-value-us {
  color: var(--sk-green-2);
  font-weight: 600;
}
@keyframes sk-chart-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============ RULE CATALOG ============ */
.sk-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .sk-cats { grid-template-columns: 1fr; } }
.sk-cat {
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  padding: 22px;
}
.sk-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sk-cat-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sk-cat-count {
  font-family: var(--sk-font-mono);
  font-size: 11px;
  color: var(--sk-text-dim);
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--sk-bg-inset);
  border: 1px solid var(--sk-border);
}
.sk-rule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sk-rule {
  font-family: var(--sk-font-mono);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--sk-radius-sm);
  background: var(--sk-bg-inset);
  border: 1px solid var(--sk-border);
  color: var(--sk-text-muted);
  text-decoration: none;
  transition: all 0.12s ease;
}
.sk-rule:hover {
  color: var(--sk-green-2);
  border-color: rgba(63,185,80,0.4);
  background: var(--sk-green-soft);
}
.sk-rule.sk-rule-crit { border-color: rgba(248,81,73,0.3); color: #ff8077; }
.sk-rule.sk-rule-crit:hover { background: var(--sk-red-soft); border-color: rgba(248,81,73,0.5); color: var(--sk-red); }

/* ============ OWASP ============ */
.sk-owasp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 760px) { .sk-owasp { grid-template-columns: 1fr; } }
.sk-owasp-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius-sm);
  background: var(--sk-bg-elev);
}
.sk-owasp-id {
  font-family: var(--sk-font-mono);
  font-size: 12px;
  color: var(--sk-green-2);
  padding: 2px 8px;
  background: var(--sk-green-soft);
  border-radius: var(--sk-radius-sm);
  white-space: nowrap;
  display: inline-block;
}
.sk-owasp-title { font-size: 14px; font-weight: 600; margin: 0 0 4px; }
.sk-owasp-rules { font-family: var(--sk-font-mono); font-size: 11.5px; color: var(--sk-text-dim); }

/* ============ INSTALL / USAGE ============ */
.sk-codebox {
  background: var(--sk-bg-inset);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  padding: 16px 18px;
  font-family: var(--sk-font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--sk-text);
  position: relative;
  overflow-x: auto;
  white-space: pre;
  tab-size: 2;
}
.sk-codebox + .sk-codebox { margin-top: 12px; }
.sk-codebox .sk-comment { color: var(--sk-text-dim); }
.sk-codebox .sk-prompt  { color: var(--sk-green); user-select: none; }

.sk-install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .sk-install-grid { grid-template-columns: 1fr; } }
.sk-install-card h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--sk-text-muted);
  font-family: var(--sk-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ FAQ ============ */
.sk-faq { display: grid; gap: 10px; }
.sk-faq details {
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  padding: 14px 18px;
  transition: border-color 0.15s ease;
}
.sk-faq details[open] { border-color: var(--sk-border-2); }
.sk-faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--sk-text);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.sk-faq summary::-webkit-details-marker { display: none; }
.sk-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sk-text-muted);
  font-family: var(--sk-font-mono);
  font-size: 18px;
  transition: transform 0.15s ease;
}
.sk-faq details[open] summary::after { content: "−"; }
.sk-faq p {
  color: var(--sk-text-muted);
  margin: 12px 0 4px;
  font-size: 14.5px;
}

/* ============ ACHIEVEMENTS ============ */
.sk-achv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .sk-achv { grid-template-columns: 1fr; } }
/* When only one achievement card is present, give it a comfortable single-column width */
.sk-achv:has(.sk-achv-card:only-child) {
  grid-template-columns: minmax(0, 560px);
  justify-content: start;
}
.sk-achv-card {
  display: block;
  padding: 18px 20px;
  background: var(--sk-bg-elev);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.sk-achv-card:hover { border-color: var(--sk-border-2); transform: translateY(-2px); }
.sk-achv-card .sk-achv-tag {
  display: inline-block;
  font-family: var(--sk-font-mono);
  font-size: 11px;
  color: var(--sk-red);
  padding: 2px 8px;
  background: var(--sk-red-soft);
  border-radius: var(--sk-radius-sm);
  margin-bottom: 8px;
}
.sk-achv-card h4 { margin: 0 0 4px; font-size: 16px; }
.sk-achv-card p { margin: 0; color: var(--sk-text-muted); font-size: 13.5px; }

/* ============ FOOTER ============ */
.sk-footer {
  border-top: 1px solid var(--sk-border);
  padding: 40px 0 56px;
  margin-top: 24px;
  color: var(--sk-text-dim);
  font-size: 13px;
}
.sk-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.sk-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.sk-footer-links a { color: var(--sk-text-muted); text-decoration: none; }
.sk-footer-links a:hover { color: var(--sk-green-2); }

/* utility */
.sk-mono { font-family: var(--sk-font-mono); }
