/* JESTECH launch styling */
:root {
  --jst-bg: #07090d;
  --jst-bg-2: #0d1118;
  --jst-panel: rgba(255, 255, 255, 0.068);
  --jst-panel-strong: rgba(255, 255, 255, 0.105);
  --jst-line: rgba(255, 255, 255, 0.145);
  --jst-text: #f7f9fc;
  --jst-muted: #aab3c2;
  --jst-soft: #d7dde8;
  --jst-blue: #2997ff;
  --jst-mint: #35d0b2;
  --jst-gold: #f2c566;
  --body-font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

body.site {
  background: var(--jst-bg);
  color: var(--jst-text);
  font-family: var(--body-font-family);
}

body.site.wrapper-static .site-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.container-header,
.container-sidebar-right,
.container-sidebar-left,
.container-breadcrumbs,
.breadcrumb,
.mod-breadcrumbs,
.article-info,
.blog-featured .page-header,
.blog-featured .item-title,
.footer {
  display: none !important;
}

.site-grid > .grid-child,
.container-component,
.com-content-article__body,
.blog-featured,
.blog-item,
.item-content,
main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.blog-items,
.blog-featured .items-leading,
.blog-featured .blog-item {
  display: block;
  margin: 0;
  padding: 0;
}

.jst-site,
.jst-site * {
  box-sizing: border-box;
}

.jst-site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(41,151,255,0.14) 0, rgba(7,9,13,0) 440px),
    radial-gradient(circle at 78% 10%, rgba(53,208,178,0.12), transparent 360px),
    var(--jst-bg);
  color: var(--jst-text);
  overflow: hidden;
}

.jst-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.jst-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(24px) saturate(150%);
}

.jst-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.jst-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--jst-text);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.jst-brand img {
  width: 132px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 8px;
}

.jst-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(41,151,255,0.9), rgba(53,208,178,0.72));
  box-shadow: 0 12px 30px rgba(41,151,255,0.25);
}

.jst-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.jst-links a {
  color: var(--jst-muted);
  text-decoration: none;
  font-size: 0.91rem;
  line-height: 1;
  padding: 10px 11px;
  border-radius: 8px;
}

.jst-links a:hover,
.jst-links a:focus {
  color: var(--jst-text);
  background: rgba(255,255,255,0.075);
}

.jst-hero {
  padding: clamp(72px, 9vw, 132px) 0 72px;
}

.jst-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.jst-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--jst-mint);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jst-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--jst-mint);
  box-shadow: 0 0 0 7px rgba(53,208,178,0.13);
}

.jst-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.65rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.jst-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--jst-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.68;
}

.jst-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.jst-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--jst-text);
  text-decoration: none;
  font-weight: 730;
  background: rgba(255,255,255,0.07);
}

.jst-button.primary {
  border-color: rgba(41,151,255,0.58);
  background: linear-gradient(135deg, #1e7be8, #35d0b2);
  color: white;
}

.jst-hero-card,
.jst-panel,
.jst-product,
.jst-person,
.jst-mini-card {
  border: 1px solid var(--jst-line);
  border-radius: 8px;
  background: var(--jst-panel);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(20px) saturate(130%);
}

.jst-hero-card {
  padding: 18px;
}

.jst-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 16px;
  color: var(--jst-muted);
  font-size: 0.84rem;
}

.jst-dots {
  display: flex;
  gap: 7px;
}

.jst-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6259;
}

.jst-dots span:nth-child(2) { background: #ffbd2e; }
.jst-dots span:nth-child(3) { background: #28c840; }

.jst-code-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  background: #10141c;
}

.jst-code-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--jst-soft);
  font-size: 0.92rem;
}

.jst-code-row:first-child { border-top: 0; }
.jst-key { color: var(--jst-blue); font-weight: 760; }
.jst-badge { color: var(--jst-mint); font-size: 0.82rem; }

.jst-section {
  padding: 74px 0;
}

.jst-section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
}

.jst-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.jst-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.jst-section p {
  color: var(--jst-muted);
  line-height: 1.72;
}

.jst-grid-2,
.jst-grid-3 {
  display: grid;
  gap: 18px;
}

.jst-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.jst-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.jst-product,
.jst-panel,
.jst-person,
.jst-mini-card {
  padding: clamp(20px, 3vw, 30px);
}

.jst-product h3,
.jst-panel h3,
.jst-person h3,
.jst-mini-card h3 {
  margin: 0 0 12px;
  color: var(--jst-text);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.jst-product ul,
.jst-panel ul,
.jst-person ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.jst-product li,
.jst-panel li,
.jst-person li {
  color: var(--jst-soft);
  padding-left: 22px;
  position: relative;
}

.jst-product li::before,
.jst-panel li::before,
.jst-person li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jst-mint);
}

.jst-kicker {
  color: var(--jst-gold);
  font-weight: 760;
  margin-bottom: 10px;
}

.jst-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.jst-contact-list {
  display: grid;
  gap: 12px;
}

.jst-contact-list a {
  color: var(--jst-text);
  text-decoration: none;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
}

.jst-footer-note {
  padding: 36px 0 52px;
  color: var(--jst-muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 920px) {
  .jst-nav-inner,
  .jst-hero-grid,
  .jst-contact-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .jst-links {
    justify-content: flex-start;
  }

  .jst-grid-2,
  .jst-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .jst-shell {
    width: min(100% - 22px, 1160px);
  }

  .jst-nav-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .jst-links a {
    padding: 9px 8px;
    font-size: 0.85rem;
  }

  .jst-hero {
    padding-top: 46px;
  }

  .jst-code-row {
    grid-template-columns: 1fr;
  }
}
