:root {
  --jsst-bg: #101820;
  --jsst-surface: rgba(10, 18, 34, 0.54);
  --jsst-surface-2: rgba(13, 23, 42, 0.74);
  --jsst-line: rgba(255, 255, 255, 0.14);
  --jsst-text: #eef4ff;
  --jsst-muted: #9fb7c0;
  --jsst-cyan: #10dccd;
  --jsst-teal: #0baea7;
  --jsst-mint: #7ff7e9;
  --jsst-pink: #10dccd;
  --jsst-blue-glow: rgba(16, 220, 205, 0.48);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(16, 220, 205, 0.16), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(11, 174, 167, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(16, 220, 205, 0.08), rgba(11, 174, 167, 0.08)),
    linear-gradient(180deg, #111a22 0%, #101820 45%, #0a1116 100%),
    var(--jsst-bg);
  color: var(--jsst-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

a { color: var(--jsst-cyan); text-decoration: none; }
a:hover { opacity: 0.9; }

.jsst-wrap { width: min(1240px, 92%); margin: 0 auto; }
.jsst-marquee {
  border-bottom: 1px solid rgba(201, 154, 72, 0.26);
  border-top: 1px solid rgba(201, 154, 72, 0.26);
  background: rgba(8, 11, 20, 0.82);
  overflow: hidden;
  white-space: nowrap;
}
.jsst-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  padding: 8px 0;
  min-width: 100%;
  animation: jsst-marquee-scroll 22s linear infinite;
}
.jsst-marquee-track span {
  display: inline-block;
  color: rgba(210, 164, 81, 0.92);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
@keyframes jsst-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.jsst-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(135deg, rgba(16, 220, 205, 0.08), rgba(11, 174, 167, 0.08)),
    rgba(7, 13, 25, 0.72);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 10px 30px rgba(0, 0, 0, 0.26);
}
.jsst-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.jsst-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jsst-text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jsst-logo img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--jsst-line);
  background: rgba(8, 12, 22, 0.9);
  box-shadow: 0 0 22px rgba(16, 220, 205, 0.22);
}

.jsst-nav ul {
  display: flex;
  list-style: none;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.jsst-nav .menu {
  display: flex;
  list-style: none;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.jsst-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--jsst-text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.jsst-nav a:hover {
  border-color: rgba(16, 220, 205, 0.46);
  color: var(--jsst-cyan);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(16, 220, 205, 0.16);
}
.jsst-nav-toggle { display:none; }
.jsst-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jsst-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 24px;
}
.jsst-hero-bg-logo {
  position: absolute;
  right: -90px;
  top: 40px;
  width: min(52vw, 640px);
  max-width: 640px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  filter: drop-shadow(0 0 42px rgba(210, 164, 81, 0.22));
}
.jsst-hero-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
  animation: jsst-logo-spin 22s linear infinite;
}
@keyframes jsst-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.jsst-hero .jsst-wrap {
  position: relative;
  z-index: 1;
}
.jsst-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.jsst-hero-copy {
  display: grid;
  align-content: start;
}
.jsst-kicker {
  color: var(--jsst-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
.jsst-kicker-animated span {
  display: inline-block;
  background: linear-gradient(90deg, rgba(11, 174, 167, 0.9), rgba(127, 247, 233, 1), rgba(16, 220, 205, 0.84), rgba(11, 174, 167, 0.9));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: jsst-kicker-shimmer 4.8s linear infinite;
}
@keyframes jsst-kicker-shimmer {
  0% { background-position: 0 0; }
  100% { background-position: 220% 0; }
}
.jsst-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}
.jsst-hero p {
  max-width: 760px;
  color: var(--jsst-muted);
  margin: 12px 0 0;
}
.jsst-hero-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  font-weight: 620;
  letter-spacing: 0.01em;
}
.jsst-hero-sub {
  max-width: 860px;
  font-size: clamp(16px, 2vw, 19px);
  color: #c3cbda;
}
.jsst-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.jsst-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 220, 205, 0.24);
  background: rgba(9, 14, 24, 0.9);
  color: #cfd6e2;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jsst-hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 220, 205, 0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 12, 21, 0.88), rgba(10, 14, 24, 0.96));
  padding: 16px;
  min-height: 220px;
}
.jsst-stage-glow {
  position: absolute;
  inset: -20% -30% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 220, 205, 0.26), rgba(16, 220, 205, 0));
  pointer-events: none;
  filter: blur(1px);
}
.jsst-stage-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.jsst-stage-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 220, 205, 0.06), rgba(11, 174, 167, 0.06)),
    rgba(10, 18, 34, 0.52);
  backdrop-filter: blur(18px);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 18px 34px rgba(0, 0, 0, 0.2);
}
.jsst-stage-card p {
  margin: 0;
  color: #c8d0dd;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jsst-stage-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(16, 220, 205, 0.18);
}
.jsst-stage-card span {
  display: block;
  margin-top: 4px;
  color: #a7b7d0;
  font-size: 12px;
}
.jsst-stage-band {
  position: relative;
  margin-top: 10px;
  border: 1px solid rgba(16, 220, 205, 0.2);
  border-radius: 999px;
  padding: 9px 12px;
  color: #d6deeb;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 10, 18, 0.64);
  animation: jsst-band-pulse 2.8s ease-in-out infinite;
}
@keyframes jsst-band-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(16, 220, 205, 0); }
  50% { box-shadow: 0 0 20px rgba(16, 220, 205, 0.18); }
}

.jsst-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.jsst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(122, 243, 255, 0.58);
  background: linear-gradient(135deg, #7ff7e9, #10dccd 42%, #0baea7);
  color: #07111d;
  font-weight: 760;
  box-shadow:
    0 0 12px rgba(16, 220, 205, 0.52),
    0 0 26px rgba(16, 220, 205, 0.24),
    0 16px 34px rgba(2, 8, 24, 0.42);
}
.jsst-btn-alt {
  background: rgba(255, 255, 255, 0.05);
  color: var(--jsst-text);
  border-color: rgba(255, 255, 255, 0.12);
}
.jsst-open-contact { cursor: pointer; }

.jsst-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 12px 0 42px;
}
.jsst-ajax-shell {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 14px;
  padding: 12px 0 28px;
}
.jsst-ajax-main {
  min-height: 320px;
}
.jsst-ajax-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.jsst-service-tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--jsst-text);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.jsst-service-tab.is-active,
.jsst-service-tab:hover {
  border-color: rgba(16, 220, 205, 0.46);
  color: var(--jsst-cyan);
  box-shadow: 0 0 16px rgba(16, 220, 205, 0.14);
}
.jsst-ajax-panel.is-loading {
  opacity: 0.68;
}
.jsst-ajax-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #c6cedd;
}
.jsst-ajax-points li {
  margin-bottom: 8px;
}
.jsst-updates-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
}
.jsst-load-updates {
  width: 100%;
  margin: 10px 0 12px;
}
.jsst-updates-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.jsst-updates-list li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(16,220,205,0.05), rgba(11,174,167,0.05)),
    rgba(10, 18, 34, 0.48);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 10px 12px;
}
.jsst-updates-list a {
  color: #e9f3ff;
}
.jsst-section-block {
  padding: 0 0 28px;
}
.jsst-about-card,
.jsst-cta-card {
  padding: 24px;
}
.jsst-about-card h2,
.jsst-cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 610;
}
.jsst-about-card p + p {
  margin-top: 10px;
}
.jsst-services-grid {
  padding-top: 4px;
}
.jsst-services-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
}
.jsst-card {
  border: 1px solid var(--jsst-line);
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(255, 0, 122, 0.06)),
    rgba(10, 18, 34, 0.54);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 22px rgba(0, 229, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.jsst-card h2,
.jsst-card h1 {
  margin: 0 0 10px;
  font-weight: 620;
  letter-spacing: 0.01em;
}
.jsst-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 700;
}
.jsst-meta { color: var(--jsst-muted); font-size: 13px; margin-bottom: 10px; }
.jsst-single-wrap { padding: 24px 0 44px; }
.jsst-prose { max-width: 920px; }
.jsst-app-wrap { padding: 10px 0 40px; }
.jsst-pagination { grid-column: 1 / -1; }
.jsst-404 { text-align: center; padding: 42px 22px; }

.jsst-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding: 16px 0;
  background: rgba(8, 13, 24, 0.72);
}
.jsst-footer-ig {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.05), rgba(255,0,122,0.05)),
    rgba(10, 18, 34, 0.5);
  backdrop-filter: blur(18px);
}
.jsst-footer-ig-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.jsst-footer-ig-head a {
  color: #d7deea;
  font-weight: 700;
}
.jsst-footer-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.jsst-footer .jsst-footer-ig-grid {
  align-items: stretch;
}
.jsst-ig-card {
  display: block !important;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 18, 34, 0.56);
  min-height: 120px;
  text-decoration: none;
  backdrop-filter: blur(14px);
}
.jsst-ig-img,
.jsst-ig-ph {
  display: grid !important;
  place-items: center;
  width: 100%;
  min-height: 120px;
}
.jsst-ig-img {
  background-size: cover;
  background-position: center;
}
.jsst-ig-ph {
  color: #d7deea;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 14% 10%, rgba(210, 164, 81, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(8, 12, 21, 0.92), rgba(11, 16, 28, 0.98));
}
.jsst-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--jsst-muted);
  font-size: 13px;
}
.jsst-footer-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.jsst-footer-links-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jsst-footer-links-placeholder li { list-style: none; }
.jsst-footer-links-placeholder a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #d5e1f5;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.jsst-footer-links-placeholder a:hover {
  border-color: rgba(0, 229, 255, 0.42);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0,229,255,0.12);
}

.jsst-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.jsst-modal.is-open {
  display: block;
}
.jsst-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 37, 0.34);
  backdrop-filter: blur(6px);
}
.jsst-modal-panel {
  position: relative;
  width: min(640px, 92%);
  margin: 8vh auto 0;
  background:
    linear-gradient(135deg, rgba(0,229,255,0.06), rgba(255,0,122,0.06)),
    rgba(10, 18, 34, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(22px);
  padding: 20px;
}
.jsst-about-modal-panel {
  width: min(920px, 94%);
  max-height: 84vh;
  overflow: hidden;
}
.jsst-about-modal-content {
  max-height: calc(84vh - 120px);
  overflow: auto;
  padding-right: 6px;
}
.jsst-about-modal-content p {
  color: #c9d0dd;
  line-height: 1.68;
  margin: 0 0 14px;
}
.jsst-modal-panel h2 {
  margin: 6px 0 6px;
}
.jsst-modal-sub {
  margin: 0 0 14px;
  color: #9fb0cd;
}
.jsst-modal-close {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--jsst-text);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
.jsst-contact-form {
  display: grid;
  gap: 10px;
}
.jsst-contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #c6d4ea;
  font-weight: 600;
}
.jsst-contact-form input,
.jsst-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 154, 72, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: #131a28;
  padding: 10px 12px;
  font: inherit;
}
.jsst-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.jsst-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.jsst-alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.jsst-alert-ok {
  background: rgba(42, 119, 63, 0.14);
  border: 1px solid rgba(42, 119, 63, 0.35);
  color: #95e3ad;
}
.jsst-alert-err {
  background: rgba(166, 57, 57, 0.12);
  border: 1px solid rgba(166, 57, 57, 0.3);
  color: #ff9494;
}

@media (max-width: 980px) {
  .jsst-hero-grid { grid-template-columns: 1fr; }
  .jsst-ajax-shell { grid-template-columns: 1fr; }
  .jsst-content-grid { grid-template-columns: 1fr 1fr; }
  .jsst-header-inner { flex-wrap: wrap; }
  .jsst-hero-bg-logo {
    width: min(82vw, 520px);
    right: -120px;
    top: 70px;
  }
}

@media (max-width: 760px) {
  .jsst-header-inner { align-items: flex-start; flex-direction: column; }
  .jsst-nav { display: none; width: 100%; }
  .jsst-nav.is-open { display: block; }
  .jsst-nav ul,
  .jsst-nav .menu { flex-direction: column; }
  .jsst-nav a { width: 100%; }
  .jsst-header-cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .jsst-header-cta .jsst-btn {
    width: 100%;
  }
  .jsst-nav-toggle {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--jsst-line);
    color: var(--jsst-text);
    background: rgba(12, 17, 29, 0.94);
  }
  .jsst-content-grid { grid-template-columns: 1fr; }
  .jsst-stage-row { grid-template-columns: 1fr; }
  .jsst-footer-ig-grid { grid-template-columns: 1fr 1fr; }
  .jsst-hero-title { font-size: clamp(26px, 8vw, 38px); }
  .jsst-footer-inner { flex-direction: column; align-items: flex-start; }
  .jsst-marquee-track {
    gap: 20px;
    padding: 7px 0;
    animation-duration: 16s;
  }
  .jsst-modal-panel {
    margin-top: 5vh;
    padding: 16px;
  }
  .jsst-hero-bg-logo {
    width: min(96vw, 420px);
    right: -120px;
    top: 118px;
    opacity: 0.42;
  }
}

/* Landing revamp */
.jsst-lp-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 42px;
}
.jsst-lp-hero-wrap { position: relative; z-index: 2; }
.jsst-lp-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  pointer-events: none;
  opacity: 0.62;
}
.jsst-lp-orb-a {
  width: 420px;
  height: 420px;
  top: -110px;
  left: -120px;
  background: radial-gradient(circle, rgba(210, 164, 81, 0.42), rgba(210, 164, 81, 0));
}
.jsst-lp-orb-b {
  width: 460px;
  height: 460px;
  right: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(127, 176, 255, 0.3), rgba(127, 176, 255, 0));
}
.jsst-lp-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jsst-gold);
}
.jsst-lp-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.jsst-lp-sub {
  margin: 14px 0 0;
  max-width: 760px;
  color: #4d5870;
  font-size: clamp(16px, 2vw, 21px);
}
.jsst-lp-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jsst-lp-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jsst-lp-strip span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 72, 0.26);
  background: rgba(255, 255, 255, 0.76);
  color: #344056;
  font-size: 12px;
  font-weight: 600;
}

.jsst-lp-services,
.jsst-lp-flow,
.jsst-lp-cta {
  padding: 14px 0 26px;
}
.jsst-lp-head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1.08;
}
.jsst-lp-grid-3 {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.jsst-lp-card h3,
.jsst-lp-step h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
}
.jsst-lp-card p,
.jsst-lp-step p {
  margin: 0;
  color: #4f596f;
}
.jsst-lp-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.jsst-lp-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #2f3a50;
}
.jsst-lp-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dfb567, #bd8737);
}

.jsst-lp-flow-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.jsst-lp-step { position: relative; }
.jsst-lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(201, 154, 72, 0.32);
  color: #7e5b1f;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.jsst-lp-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.jsst-lp-cta-card h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}
.jsst-lp-cta-card p {
  margin: 10px 0 0;
  color: #51607a;
}
.jsst-lp-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

@media (max-width: 1000px) {
  .jsst-lp-grid-3,
  .jsst-lp-flow-grid { grid-template-columns: 1fr 1fr; }
  .jsst-lp-cta-card { flex-direction: column; align-items: flex-start; }
  .jsst-lp-cta-actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 700px) {
  .jsst-lp-hero { padding-top: 70px; }
  .jsst-lp-title { font-size: clamp(32px, 10vw, 48px); }
  .jsst-lp-grid-3,
  .jsst-lp-flow-grid { grid-template-columns: 1fr; }
  .jsst-lp-actions .jsst-btn { width: 100%; }
  .jsst-lp-cta-actions .jsst-btn { width: 100%; }
}

.jsst-home-logo-only {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.jsst-home-logo-only-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jsst-home-logo-only-inner img {
  width: min(320px, 64vw);
  height: auto;
  display: block;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 72, 0.3);
  box-shadow: 0 0 34px rgba(210, 164, 81, 0.24);
}

.home .elementor-3050 .elementor-element-b5ec66f.jsst-has-dj-waveforms {
  position: relative;
  overflow: visible;
}

.jsst-dj-waveforms {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(180px, 30vh, 300px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.jsst-dj-waveforms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(4, 10, 14, 0.28) 38%, rgba(4, 10, 14, 0.82) 100%),
    radial-gradient(circle at 18% 50%, rgba(0, 229, 255, 0.08), transparent 30%),
    radial-gradient(circle at 78% 64%, rgba(255, 0, 122, 0.10), transparent 28%);
}

.jsst-dj-waveforms canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jsst-dj-waveforms-main {
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.16)) drop-shadow(0 0 30px rgba(255, 0, 122, 0.08));
}

.jsst-dj-waveforms-detail {
  mix-blend-mode: screen;
  opacity: 0.72;
}

@media (max-width: 767px) {
  .jsst-dj-waveforms {
    height: 180px;
  }
}
