/* ============================================================
   JJSploit Official — Design System & Styles
   Adapted from Asana system: mute, refined, dark-theme gaming.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  background: #0a0a0f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: inherit;
  color: inherit;
}

code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-bottom: 12px;
  background: rgba(139, 92, 246, 0.08);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.nav__logo-icon--sm {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.nav__logo-text {
  color: rgba(255, 255, 255, 0.9);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #fff;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  padding: 80px 0 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .breadcrumb {
    padding-top: 72px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 48px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 6px 16px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 500px;
}

.hero__sub strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 8px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.hero__meta-item svg {
  opacity: 0.5;
}

/* Hero visual / screenshot */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__screenshot-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero__screenshot-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero__screenshot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px -12px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.hero__screenshot-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .hero {
    padding: 24px 0 64px;
  }

  .hero__screenshot-badge {
    top: 8px;
    right: 8px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 4px 16px -4px rgba(139, 92, 246, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.4),
    0 8px 32px -4px rgba(139, 92, 246, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 12px;
}

.btn--full {
  width: 100%;
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 0 0 80px;
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  margin-bottom: 16px;
}

.stat-card__value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  display: inline;
}

.stat-card__unit {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  display: inline;
  margin-left: 2px;
}

.stat-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DOWNLOAD / PLATFORM CARDS
   ============================================================ */
.download-section {
  padding: 80px 0;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.platform-card--featured {
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.04);
}

.platform-card--featured:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.platform-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.12);
  padding: 3px 10px;
  border-radius: 99px;
}

.platform-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.platform-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.platform-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -8px;
}

.platform-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.platform-card__list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 18px;
  position: relative;
}

.platform-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.4);
}

.platform-card__info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SYSTEM REQUIREMENTS
   ============================================================ */
.requirements {
  padding: 80px 0;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.req-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.req-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.req-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.req-card h3 svg {
  opacity: 0.5;
}

.req-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.req-card li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.req-card li strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .req-grid {
    grid-template-columns: 1fr;
  }
}

/* Capability cards */
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.capability-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
}

.capability-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(99, 102, 241, 0.18);
}

.tag--green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.18);
  color: rgba(16, 185, 129, 0.85);
}

.tag--green:hover {
  background: rgba(16, 185, 129, 0.18);
}

.capability-tags--green .tag {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.12);
  color: rgba(16, 185, 129, 0.75);
}

@media (max-width: 768px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  color: #a78bfa;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONSOLE / CHANGELOG
   ============================================================ */
.changelog {
  padding: 80px 0;
}

.console {
  background: #0d0d11;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 24px 80px -12px rgba(0, 0, 0, 0.5);
}

.console__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console__dots {
  display: flex;
  gap: 6px;
}

.console__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.console__dot--red { background: #ff5f57; }
.console__dot--yellow { background: #febc2e; }
.console__dot--green { background: #28c840; }

.console__title {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.console__minimize {
  padding: 4px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.console__minimize:hover {
  color: rgba(255, 255, 255, 0.6);
}

.console__body {
  padding: 8px 0;
  max-height: 600px;
  overflow-y: auto;
  transition: max-height 0.4s ease;
}

.console__body.collapsed {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.console__body::-webkit-scrollbar {
  width: 6px;
}

.console__body::-webkit-scrollbar-track {
  background: transparent;
}

.console__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.console__entry {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.console__entry-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.console__entry-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.console__prompt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #8b5cf6;
  font-weight: 600;
}

.console__version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.console__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
}

.console__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
}

.console__badge--latest {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.console__chevron {
  color: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.console__entry--active .console__chevron {
  transform: rotate(-180deg);
}

.console__entry-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.console__entry--active .console__entry-body {
  max-height: 500px;
}

.console__entry-body pre {
  padding: 0 20px 16px 40px;
}

.console__entry-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  padding: 0;
  display: block;
  white-space: pre-wrap;
}

.console__prompt-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
}

.console__cursor {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #8b5cf6;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .console__date {
    display: none;
  }

  .console__entry-body pre {
    padding-left: 20px;
  }

  .console__body {
    max-height: 500px;
  }
}

/* ============================================================
   TROUBLESHOOTING
   ============================================================ */
.troubleshooting {
  padding: 80px 0;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trouble-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.trouble-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.trouble-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.trouble-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.trouble-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.trouble-card strong {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trouble-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 50% 30% at 80% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: rgba(139, 92, 246, 0.2);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.faq-item__question:hover {
  color: #fff;
}

.faq-item__icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: #8b5cf6;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.faq-item__answer strong {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.share {
  padding: 64px 0;
}

.share__inner {
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 48px 32px;
}

.share__inner h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.share__inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.share__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.share-btn--facebook:hover { color: #1877f2; border-color: rgba(24, 119, 242, 0.3); }
.share-btn--twitter:hover { color: #1da1f2; border-color: rgba(29, 161, 242, 0.3); }
.share-btn--reddit:hover { color: #ff4500; border-color: rgba(255, 69, 0, 0.3); }
.share-btn--linkedin:hover { color: #0a66c2; border-color: rgba(10, 102, 194, 0.3); }
.share-btn--pinterest:hover { color: #e60023; border-color: rgba(230, 0, 35, 0.3); }

@media (max-width: 560px) {
  .share__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .share-btn {
    justify-content: center;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand .nav__logo-icon,
.footer__brand .nav__logo-text {
  display: inline-block;
  vertical-align: middle;
}

.footer__brand .nav__logo-icon {
  display: inline-flex;
  vertical-align: middle;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 400px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.toast.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   GLOBAL ANIMATIONS
   ============================================================ */

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
}