
.st-hero-title {
  background: linear-gradient(90deg,#ff4ec7,#b64fff,#ffa84e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


:root {
  --st-bg: #020617;
  --st-bg-elevated: #020617;
  --st-card: #020617;
  --st-border: rgba(37, 99, 235, 0.4);
  --st-text: #e5e7eb;
  --st-muted: #9ca3af;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #000 100%);
  color: var(--st-text);
}

/* Layout shells */

.gh-outer {
  padding: 1.5rem 1rem 3rem;
}

.gh-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */

.st-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 0.96));
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(14px);
}

.st-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.st-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.st-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: radial-gradient(circle at 0 0, #38bdf8, #a855f7);
  color: #0b1120;
}

.st-logo-text {
  display: flex;
  flex-direction: column;
}

.st-logo-title {
  font-weight: 700;
  font-size: 0.98rem;
  background: linear-gradient(90deg, #ff3ba9 0%, #c752ff 30%, #ff8a42 65%, #ffdf45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st-logo-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--st-muted);
}

/* Navigation pills */

.st-nav {
  display: flex;
}

.st-nav ul {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}


.st-nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  color: var(--st-text);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.85);
}



.st-nav-pill:hover {
  border-color: rgba(248, 250, 252, 0.9);
  color: #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
}


.st-nav-pill-primary {
  border: none;
  background: linear-gradient(to right, #38bdf8, #a855f7);
  color: #0b1120;
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.65);
}

.st-nav-pill-primary:hover {
  filter: brightness(1.07);
}

/* Hero */

.st-hero {
  margin-top: 1.8rem;
}

.st-hero-full-card {
  border-radius: 26px;
  padding: 1.7rem 1.7rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), #020617 55%, #000 100%);
  border: 1px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95);
}

.st-hero-two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 1.6rem;
  align-items: center;
}

.st-hero-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin: 0 0 0.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff3ba9 0%, #c752ff 30%, #ff8a42 65%, #ffdf45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st-hero-subtitle {
  margin: 0 0 1rem;
  color: var(--st-muted);
}

.st-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.st-btn {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.st-btn-primary {
  background: linear-gradient(to right, #38bdf8, #a855f7);
  color: #0b1120;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.7);
}

.st-btn-primary:hover {
  filter: brightness(1.05);
}

.st-hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-hero-logo {
  max-width: 156px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.9));
}

/* Dashboard & cards */

.st-dashboard {
  margin-top: 2.4rem;
}

.st-dashboard-grid-single {
  display: grid;
}

.st-panel {
  border-radius: 26px;
  border: 1px solid rgba(37, 99, 235, 0.55);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), #020617 70%, #000 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.95);
  padding: 1.4rem 1.4rem 1.1rem;
}

.st-panel-header {
  margin-bottom: 0.9rem;
}

.st-section-title {
  margin: 0;
  font-size: 1.1rem;
}

/* Post cards */

.st-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.st-post-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.5);
  background: #020617;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.95);
}

.st-post-card-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.st-post-card-content {
  padding: 0.9rem 1.2rem 1rem;
}

.st-post-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.st-post-card-title a {
  color: inherit;
  text-decoration: none;
}

.st-post-card-title a:hover {
  text-decoration: underline;
}

.st-post-card-excerpt {
  margin: 0 0 0.5rem;
  color: var(--st-muted);
  font-size: 0.9rem;
}

.st-post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--st-muted);
}

.st-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  font-size: 0.75rem;
}

/* Article layout */

.st-article {
  border-radius: 26px;
  border: 1px solid rgba(37, 99, 235, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), #020617 70%, #000 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.95);
  padding: 1.6rem 1.8rem 1.9rem;
  max-width: 960px;
  margin: 2.2rem auto 0;
}

.st-article-header {
  margin-bottom: 1.1rem;
}

.st-article-title {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.st-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--st-muted);
}

.st-article-feature {
  margin: 1rem auto 1.3rem;
  max-width: 760px;
}

.st-article-feature img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* In-content images */

.st-article-content figure,
.st-article-content .kg-image-card {
  margin: 1.2rem auto;
  max-width: 640px;
}

.st-article-content figure img,
.st-article-content .kg-image-card img,
.st-article-content img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Typography */

.st-article-content {
  line-height: 1.7;
  font-size: 0.97rem;
}

.st-article-content p {
  margin: 0 0 0.9rem;
}

.st-article-content h2 {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.25rem;
}

.st-article-content h3 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.05rem;
}


/* Footer */

.st-footer {
  padding: 1.8rem 1rem 2.2rem;
}

.st-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: var(--st-muted);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}


.st-footer-accent {
  width: 100%;
  max-width: 1120px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #38bdf8, #a855f7, #ff8a42, #ffdf45);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.45);
}


.st-footer-text {
  margin: 0;
}

.st-footer-sub {
  margin: 0;
  opacity: 0.8;
}

.st-footer-inner a {
  color: inherit;
  text-decoration: none;
}

.st-footer-inner a:hover {
  color: #e5e7eb;
}

.st-footer-site {
  font-weight: 600;
}

.st-heart {
  color: #fb7185;
}

/* Responsive: consolidate everything here */

@media (max-width: 860px){
.st-hero-title{text-align:center;width:100%;}
  .gh-outer {
    padding: 1.2rem 0.9rem 2.4rem;
  }

  .st-header-inner {
    padding-inline: 0.9rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .st-nav ul {
    flex-wrap: wrap;
  }

  .st-hero {
    margin-top: 1.4rem;
  }

  .st-hero-full-card {
    padding: 1.4rem 1.2rem;
  }

  .st-hero-two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .st-hero-logo-wrap {
    justify-content: center;
    margin-top: 1rem;
  }

  .st-hero-logo {
    max-width: 130px;
  }

  .st-article {
    padding: 1.3rem 1.1rem 1.5rem;
    margin-top: 1.6rem;
  }
}

/* Extra small screens */

@media (max-width: 520px) {
  .st-header-inner {
    padding-inline: 0.8rem;
  }

  .st-hero-full-card {
    border-radius: 22px;
  }

  .st-panel {
    border-radius: 22px;
  }

  .st-article {
    border-radius: 22px;
  }
}


/* Ghost required width helpers */
.kg-width-wide {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
}

.kg-width-full {
  width: 100%;
  max-width: none;
  margin: 2rem 0;
}


.st-logo-mark-img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.8);
}
