 :root {
      --fg: #d1d9d4;
      --accent: #7fb0ff;
      --muted: #9aa59c;
      --border: #1e2a23;
      --radius:12px;
    }

    * { box-sizing:border-box; }

  body {
  background:
    radial-gradient(
      1000px 500px at top,
      rgba(120,140,100,0.06),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #0b120d 0%,
      #0f1a14 60%,
      #0b120d 100%
    );
}


    /* LOGO */
    .logo {
      width:96px;
      height:auto;
      margin-bottom:1rem;
    }

    .hero-title {
      font-size: 2.3rem;
      font-weight: 600;
      background: linear-gradient(90deg, #79c0ff, #58a6ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin: 0.6rem 0 0.4rem;
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--muted);
      letter-spacing: 0.3px;
      margin-bottom: 1.6rem;
    }

    h2 { font-weight:500; margin-bottom:1rem; }
    h3 { color:var(--accent); margin-bottom:1rem; }

    p {
      max-width:760px;
      line-height:1.6;
      color:var(--muted);
      margin:.6rem auto;
    }

    .divider {
      width:90px;
      height:2px;
      background:var(--accent);
      margin:1.6rem auto;
      border-radius:2px;
    }

    .badge {
      display:inline-block;
      padding:10px 18px;
      border:1px solid var(--border);
      border-radius:999px;
      background:#161b22;
      font-weight:600;
      margin:1.4rem 0;
    }

    /* NAV BUTTONS */
    .nav-buttons {
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:center;
      margin:2rem 0;
    }

    .nav-buttons button {
      background:transparent;
      border:1px solid var(--border);
      color:var(--fg);
      padding:10px 18px;
      border-radius:var(--radius);
      font-weight:600;
      cursor:pointer;
    }

    .nav-buttons button:hover {
      border-color:var(--accent);
    }

    /* SECTIONS */
    .section {
      display: none;
      max-width: 960px;
      margin: 3rem auto 0 auto;   /* 👈 THIS CENTERS IT */
      text-align: left;
    }


    .section.active {
      display:block;
    }

    .card {
      background:#161b22;
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:1.2rem;
      margin:1rem 0;
    }

    pre {
      background:#161b22;
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:1rem;
      overflow:auto;
      color:var(--fg);
    }


    footer {
      margin-top:4rem;
      font-size:.9rem;
      color:var(--muted);
      text-align:center;
    }

    .hero-logo {
  height: 130px;        /* headline-sized */
  width: auto;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .hero-logo {
    height: 110px;
  }
}

@media (max-width: 640px) {
  .hero-logo {
    height: 90px;
  }
}

.cta-line {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--fg);
  font-weight: 500;
  opacity: 0.9;
}
/* HERO LAYOUT — LOCKED */
.hero {
  min-height: 92vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 24px;

  /* Match DevOpsMind visual center */
  transform: translateY(-3vh);
}

.section.fade-in {
  display: block;
}

.hero > * {
  max-width: 960px;
}

.nav-buttons {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.section h3 {
  text-align: center;
}
.nav-buttons button:hover {
  transform: translateY(-1px);
  border-color: rgba(88,166,255,0.6);
}
.nav-buttons .primary {
  background: linear-gradient(90deg, #79c0ff, #58a6ff);
  color: #0b0f17;
  border: none;
}

.nav-buttons .primary:hover {
  filter: brightness(1.05);
}

/* =====================
   PAGE FADE-IN
===================== */
body {
  opacity: 0;
  animation: pageFadeIn 0.8s ease-out forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* =====================
   SCROLL FADE-IN
===================== */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0.9;
}

.download-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.download-btn.enabled {
  cursor: pointer;
  opacity: 1;
  border-color: var(--accent);
}

.download-btn.enabled:hover {
  border-color: rgba(88,166,255,0.6);
}
#install-section pre {
  margin-top: 0.6rem;
}

#install-section strong {
  display: block;
  margin-top: 1rem;
}

.code-block {
  position: relative;
  margin-top: 10px;
}

.code-block pre {
  padding: 14px 16px;
  background: #0b0f17;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.9rem;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.75rem;
  padding: 4px 8px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.copy-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
