/* ═══════════════════════════════════════════════════════════════════════
   JSI SmartLinks Pro — Marketing Homepage ([jsi_homepage])
   Design system v2. Full-bleed, theme-independent, dark-first premium SaaS.
   Brand: Deep Purple #25003E · Gold #FFC600 · White · Near-black charcoal.
   ═══════════════════════════════════════════════════════════════════════ */

.jsi-home {
  /* ── Brand tokens ─────────────────────────────────────────────────── */
  --jh-purple:        #25003E;
  --jh-purple-1:      #3A0A5C;
  --jh-purple-2:      #57178A;
  --jh-purple-glow:   #7C2FC2;
  --jh-gold:          #FFC600;
  --jh-gold-2:        #FFB000;
  --jh-white:         #ffffff;
  --jh-green:         #3DDC97;
  --jh-red:           #FF5C7A;

  /* ── Surface tokens ───────────────────────────────────────────────── */
  --jh-bg:            #050308;
  --jh-bg-1:          #0A0512;
  --jh-bg-2:          #0F0919;
  --jh-bg-3:          #150C24;
  --jh-fg:            #F6F4FA;
  --jh-fg-dim:        rgba(246,244,250,0.66);
  --jh-fg-faint:      rgba(246,244,250,0.40);
  --jh-border:        rgba(255,255,255,0.09);
  --jh-border-2:      rgba(255,255,255,0.16);
  --jh-glass:         rgba(255,255,255,0.045);
  --jh-glass-2:       rgba(255,255,255,0.075);
  --jh-radius-sm:     12px;
  --jh-radius:        20px;
  --jh-radius-lg:     32px;
  --jh-max:           1280px;
  --jh-ease:          cubic-bezier(.16,1,.3,1);
  --jh-font-display:  'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --jh-font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --jh-font-mono:     'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  position: relative;
  width: 100%;
  margin: 0;
  background: var(--jh-bg);
  color: var(--jh-fg);
  font-family: var(--jh-font-body);
  line-height: 1.5;
  overflow: hidden;
  isolation: isolate;
}

.jsi-home.jsi-home--bleed-js { overflow: visible; }
/* Belt-and-suspenders: :has() covers modern browsers, but the homepage
   markup also always renders a `.jsi-slp-fullwidth` body class (see
   ShortcodesModule::maybeForceFullWidthLayout()), so keep a class-based
   fallback for browsers that don't support :has() yet — that gap is
   exactly how the hero could end up horizontally scrollable on some
   mobile browsers even though everything looks right on desktop. */
body:has(#jsi-home),
body.jsi-slp-fullwidth {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Full-bleed breakout (CSS-only, no JS measurement) ───────────────────
   Previously this relied on JS reading getBoundingClientRect() and writing
   an inline margin-left/width to "pull" the homepage root flush with the
   viewport. That's timing-sensitive (mobile browsers can report a stale
   clientWidth/layout before the viewport meta + fonts settle, and no
   resize/orientationchange ever fires again to correct it) and was the
   root cause of the hero rendering shifted/cut-off on phones. This
   `calc(50% - 50vw)` technique needs no measurement at all: 50% resolves
   against the (possibly padded/narrower) theme content column .jsi-home
   sits in, 50vw resolves against the real viewport, and the difference is
   exactly the offset needed to pull the element edge-to-edge — correct on
   first paint, on every device, with zero JS dependency. */
.jsi-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Hard viewport clamp on the whole homepage root and hero shell.
   width:100vw alone isn't enough if the page already has a vertical
   scrollbar eating into clientWidth, or a theme ancestor ends up wider
   than the viewport on a phone — max-width:100vw guarantees this
   component itself can never be the thing pushing the page wider than
   the screen. */
.jsi-home,
.jsi-home-hero,
.jsi-home-hero-inner {
  max-width: 100vw;
}

/* Grid/flex blowout guard: a grid or flex item's default min-width is
   `auto`, i.e. sized to its *content*, not the track — so a long
   unbreakable string (a badge, a nowrap stat, a chip) inside any of
   these can silently force the item (and on some themes, the ancestor
   track itself) wider than the viewport. min-width:0 lets them shrink
   and wrap normally instead. */
.jsi-home-hero-inner,
.jsi-home-hero-copy,
.jsi-home-hero-visual,
.jsi-home-eyebrow,
.jsi-home-bento,
.jsi-home-card,
.jsi-idash-grid,
.jsi-idash-metric,
.jsi-idash-body,
.jsi-idash-releases,
.jsi-idash-release,
.jsi-home-demo-wrap,
.jsi-analytics-wrap,
.jsi-home-stats,
.jsi-home-stat {
  min-width: 0;
}

.jsi-home, .jsi-home * { box-sizing: border-box; }
.jsi-home a { color: inherit; text-decoration: none; }
.jsi-home img { max-width: 100%; display: block; }
.jsi-home ul { list-style: none; margin: 0; padding: 0; }
.jsi-home button { font: inherit; }
.jsi-home svg { display: block; }
.jsi-home ::selection { background: var(--jh-gold); color: var(--jh-purple); }

.jsi-home :focus-visible {
  outline: 2px solid var(--jh-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Typography rhythm ──────────────────────────────────────────────── */
.jsi-home-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--jh-font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--jh-gold);
}
.jsi-home-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--jh-gold); box-shadow: 0 0 10px 2px rgba(255,198,0,.65);
}
.jsi-home-h2 {
  font-family: var(--jh-font-display); font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; letter-spacing: -0.015em;
  margin: 18px 0 16px; color: var(--jh-white);
}
.jsi-home-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.65;
  color: var(--jh-fg-dim); max-width: 620px; margin: 0;
}
.jsi-home-section-head { max-width: 780px; margin-bottom: 56px; }
.jsi-home-section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

/* ─── Progressive-enhancement reveal-on-scroll ──────────────────────────
   IMPORTANT: content is visible by default with NO js required. The
   hidden pre-animation state is only switched on once homepage.js has
   confirmed it is alive (adds .jsi-anim to the root). This means a JS
   error, a blocked script, or JS being disabled degrades to "static,
   fully visible content" instead of "blank page" — the previous
   architecture hid everything by default and depended on JS to reveal
   it, which was a single point of total failure. */
.jsi-home .reveal, .jsi-home .reveal-scale { opacity: 1; transform: none; }
.jsi-home.jsi-anim .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--jh-ease), transform .8s var(--jh-ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.jsi-home.jsi-anim .reveal.is-visible { opacity: 1; transform: translateY(0); }
.jsi-home.jsi-anim .reveal-scale {
  opacity: 0; transform: scale(.94);
  transition: opacity .7s var(--jh-ease), transform .7s var(--jh-ease);
  transition-delay: var(--d, 0ms);
}
.jsi-home.jsi-anim .reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* ─── Buttons (base styles live in site-header.css since the global nav
   uses them too; homepage-only flourishes here) ───────────────────────── */
.jsi-home-arrow { transition: transform .18s; display: inline-block; }
.jsi-home-btn:hover .jsi-home-arrow { transform: translateX(3px); }
.jsi-home-btn-lg { padding: 16px 30px !important; font-size: 15.5px !important; }
.jsi-home-play-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--jh-purple);
  animation: jh-pulse-dot 1.8s ease-out infinite;
}
@keyframes jh-pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(37,0,62,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(37,0,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,0,62,0); }
}

/* ─── Ambient backgrounds (mesh / grid / grain / beams) ─────────────────── */
.jsi-home-mesh { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.jsi-home-mesh span {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: jh-drift 22s ease-in-out infinite alternate;
}
.jsi-home-mesh .m1 { width: 620px; height: 620px; left: -180px; top: -160px; background: radial-gradient(circle, var(--jh-purple-glow), transparent 70%); opacity: .55; }
.jsi-home-mesh .m2 { width: 520px; height: 520px; right: -140px; top: 120px; background: radial-gradient(circle, var(--jh-gold), transparent 72%); opacity: .16; animation-delay: -7s; }
.jsi-home-mesh .m3 { width: 460px; height: 460px; left: 30%; bottom: -220px; background: radial-gradient(circle, var(--jh-purple-2), transparent 70%); opacity: .5; animation-delay: -14s; }
.jsi-home-mesh-cta span { opacity: .5; }
@keyframes jh-drift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,30px) scale(1.08); } }

.jsi-home-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--jh-border) 1px, transparent 1px), linear-gradient(90deg, var(--jh-border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 40%, transparent 90%);
  opacity: .45;
}
.jsi-home-beams { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.jsi-home-beams span {
  position: absolute; top: -10%; width: 2px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(255,198,0,.35), transparent);
  transform: rotate(14deg); animation: jh-beam-fade 6s ease-in-out infinite;
}
.jsi-home-beams span:nth-child(1) { left: 18%; animation-delay: 0s; }
.jsi-home-beams span:nth-child(2) { left: 52%; animation-delay: 2s; background: linear-gradient(to bottom, transparent, rgba(124,47,194,.5), transparent); }
.jsi-home-beams span:nth-child(3) { left: 80%; animation-delay: 4s; }
@keyframes jh-beam-fade { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

.jsi-home-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.jsi-home-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.jsi-home-particles span {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--jh-gold); opacity: .5; animation: jh-float-up linear infinite;
  box-shadow: 0 0 6px 1px rgba(255,198,0,.7);
}
@keyframes jh-float-up { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: .6; } 90% { opacity: .3; } 100% { transform: translateY(-620px); opacity: 0; } }

/* ─── Sections shell ─────────────────────────────────────────────────── */
.jsi-home-section { position: relative; z-index: 1; padding: 128px 0; }
.jsi-home-section-inner { max-width: var(--jh-max); margin: 0 auto; padding: 0 32px; }
.jsi-home-section-alt { background: linear-gradient(180deg, transparent, var(--jh-bg-1) 12%, var(--jh-bg-1) 88%, transparent); }
.jsi-home-section-dark { background: var(--jh-bg-2); border-top: 1px solid var(--jh-border); border-bottom: 1px solid var(--jh-border); }

/* ══════════════════════════ HERO ═══════════════════════════════════════ */
.jsi-home-hero { position: relative; padding: 168px 0 120px; overflow: hidden; }
.jsi-home-hero-inner {
  position: relative; z-index: 2; max-width: var(--jh-max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 56px; align-items: center;
}
.jsi-home-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: 999px;
  background: var(--jh-glass); border: 1px solid var(--jh-border-2);
  font-size: 13px; color: var(--jh-fg-dim); backdrop-filter: blur(10px);
}
.jsi-home-eyebrow em {
  font-style: normal; background: linear-gradient(135deg, var(--jh-gold), var(--jh-gold-2));
  color: var(--jh-purple); font-weight: 800; font-size: 11px; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px;
}
.jsi-home-h1 {
  font-family: var(--jh-font-display); font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.04; letter-spacing: -0.02em;
  margin: 26px 0 22px; color: var(--jh-white);
}
.jsi-home-gradient-text {
  background: linear-gradient(100deg, var(--jh-gold) 10%, #FFE49E 35%, var(--jh-gold-2) 60%, var(--jh-purple-glow) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: jh-gradient-pan 7s ease-in-out infinite;
}
@keyframes jh-gradient-pan { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.jsi-home-sub { font-size: 1.13rem; line-height: 1.65; color: var(--jh-fg-dim); max-width: 520px; margin: 0 0 34px; }
.jsi-home-sub em { color: var(--jh-fg); font-style: normal; }
.jsi-home-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.jsi-home-trust > span { display: block; font-size: 12.5px; color: var(--jh-fg-faint); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-family: var(--jh-font-mono); }
.jsi-home-trust-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); max-width: 520px; }
.jsi-home-trust-track { display: flex; width: max-content; animation: jh-marquee 32s linear infinite; }
.jsi-home-trust-logos { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.jsi-home-trust-logos img { height: 20px; width: auto; opacity: .55; filter: grayscale(1) brightness(1.8); transition: opacity .2s, filter .2s; }
.jsi-home-trust-logos img:hover { opacity: 1; filter: none; }
@keyframes jh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero floating dashboard stage ───────────────────────────────────── */
.jsi-dash-stage { position: relative; perspective: 1400px; min-height: 480px; }
.jsi-dash {
  position: relative; z-index: 3; width: min(390px, 90vw); margin: 0 auto;
  background: linear-gradient(155deg, rgba(20,10,32,.92), rgba(10,5,18,.96));
  border: 1px solid var(--jh-border-2); border-radius: var(--jh-radius-lg);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.03) inset, 0 0 90px -20px rgba(124,47,194,.45);
  backdrop-filter: blur(20px); overflow: hidden; transition: transform .1s linear;
  animation: jh-float-dash 7s ease-in-out infinite;
}
@keyframes jh-float-dash { 0%,100% { transform: translateY(0) rotate(0.15deg); } 50% { transform: translateY(-14px) rotate(-0.15deg); } }
.jsi-dash-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--jh-border); }
.jsi-dash-url { font-family: var(--jh-font-mono); font-size: 11.5px; color: var(--jh-fg-faint); }
.jsi-dash-live { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--jh-green); font-family: var(--jh-font-mono); }
.jsi-dash-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--jh-green); box-shadow: 0 0 8px 1px rgba(61,220,151,.8); animation: jh-pulse-dot2 1.6s ease-out infinite; }
@keyframes jh-pulse-dot2 { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.jsi-dash-body { display: flex; gap: 14px; padding: 20px 18px 16px; }
.jsi-dash-art {
  flex: none; width: 88px; height: 88px; border-radius: 16px; position: relative;
  background: linear-gradient(135deg, var(--jh-purple-2), var(--jh-purple)); overflow: hidden;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.6);
}
.jsi-dash-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jsi-dash-art::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(37,0,62,.55), rgba(87,23,138,.25)), repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px);
}
.jsi-dash-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); border: none; color: var(--jh-white); cursor: pointer; padding: 0;
  transition: background .2s;
}
.jsi-dash-play:hover { background: rgba(0,0,0,.42); }
.jsi-dash-play svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); transition: opacity .2s; }
.jsi-dash-play-bars { display: none; align-items: flex-end; gap: 3px; height: 22px; }
.jsi-dash-play-bars span { width: 4px; background: var(--jh-gold); border-radius: 2px; animation: jh-bar-bounce 0.9s ease-in-out infinite; }
.jsi-dash-play-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.jsi-dash-play-bars span:nth-child(2) { height: 100%; animation-delay: .15s; }
.jsi-dash-play-bars span:nth-child(3) { height: 65%; animation-delay: .3s; }
.jsi-dash-play-bars span:nth-child(4) { height: 85%; animation-delay: .45s; }
.jsi-dash-play.is-playing svg { display: none; }
.jsi-dash-play.is-playing .jsi-dash-play-bars { display: flex; }
@keyframes jh-bar-bounce { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }
.jsi-dash-meta { flex: 1; min-width: 0; padding-top: 2px; }
.jsi-dash-title { font-weight: 700; font-size: 15px; color: var(--jh-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jsi-dash-artist { font-size: 12.5px; color: var(--jh-fg-faint); margin-bottom: 12px; }
.jsi-dash-wave { display: flex; align-items: flex-end; gap: 2px; height: 32px; }
.jsi-dash-wave span { flex: 1; background: linear-gradient(180deg, var(--jh-gold), rgba(255,198,0,.25)); border-radius: 2px; min-width: 2px; animation: jh-wave-pulse 2.2s ease-in-out infinite; }
.jsi-dash-wave span:nth-child(3n) { animation-delay: .2s; } .jsi-dash-wave span:nth-child(3n+1) { animation-delay: .4s; }
@keyframes jh-wave-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.jsi-dash-platforms { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 18px 16px; }
.jsi-dash-chip { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 999px; background: var(--jh-glass); border: 1px solid var(--jh-border); font-size: 12.5px; font-weight: 500; }
.jsi-dash-chip img { width: 15px; height: 15px; }
.jsi-dash-chip-more { color: var(--jh-fg-faint); }
.jsi-dash-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-top: 1px solid var(--jh-border); font-size: 12px; color: var(--jh-fg-faint); }
.jsi-dash-foot strong { color: var(--jh-green); font-family: var(--jh-font-mono); }

.jsi-orbit-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: var(--jh-radius); background: rgba(15,9,25,.85);
  border: 1px solid var(--jh-border-2); backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.7); transition: transform .1s linear;
  animation: jh-float-card 5.5s ease-in-out infinite;
}
.jsi-orbit-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--jh-white); font-family: var(--jh-font-display); }
.jsi-orbit-card small { font-size: 11px; color: var(--jh-fg-faint); }
.jsi-orbit-icon { flex: none; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,198,0,.14); color: var(--jh-gold); }
.jsi-orbit-icon svg { width: 17px; height: 17px; }
.jsi-orbit-analytics { top: 6%; left: -8%; animation-delay: -1s; }
.jsi-orbit-listeners { bottom: 14%; right: -10%; animation-delay: -2.6s; }
.jsi-orbit-platform { top: 46%; right: -14%; animation-delay: -4s; }
@keyframes jh-float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.jsi-orbit-artwork { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.jsi-orbit-artwork span {
  position: absolute; border-radius: 50%; border: 1px solid var(--jh-border);
  animation: jh-orbit-spin linear infinite;
}
.jsi-orbit-artwork span:nth-child(1) { inset: 6%; animation-duration: 40s; }
.jsi-orbit-artwork span:nth-child(2) { inset: 14%; animation-duration: 55s; animation-direction: reverse; }
.jsi-orbit-artwork span:nth-child(3) { inset: -4%; animation-duration: 70s; opacity: .5; }
@keyframes jh-orbit-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (min-width: 961px) { .jsi-dash, .jsi-orbit-card, .jsi-orbit-artwork { will-change: transform; } }

/* ══════════════════════ TRUSTED BY (standalone) ═════════════════════════ */
.jsi-home-trustedby { position: relative; z-index: 1; padding: 72px 0; border-top: 1px solid var(--jh-border); border-bottom: 1px solid var(--jh-border); }
.jsi-trustedby-label { text-align: center; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--jh-fg-faint); font-family: var(--jh-font-mono); margin-bottom: 36px; }
.jsi-home-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; max-width: var(--jh-max); margin: 0 auto; padding: 0 32px; }
.jsi-home-stat { text-align: center; padding: 20px; border-radius: var(--jh-radius); background: var(--jh-glass); border: 1px solid var(--jh-border); }
.jsi-home-stat strong { display: block; font-family: var(--jh-font-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: var(--jh-gold); letter-spacing: -0.02em; }
.jsi-home-stat span { display: block; font-size: 13px; color: var(--jh-fg-dim); margin-top: 6px; }

/* ══════════════════════════ FEATURES (bento) ════════════════════════════ */
.jsi-home-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); gap: 20px; }
.jsi-home-card {
  position: relative; grid-column: span 1; padding: 30px 26px; border-radius: var(--jh-radius);
  background: linear-gradient(160deg, var(--jh-glass-2), var(--jh-glass));
  border: 1px solid var(--jh-border); overflow: hidden; transition: transform .35s var(--jh-ease), border-color .35s, box-shadow .35s;
}
.jsi-home-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(255,198,0,.4), transparent 40%, transparent 60%, rgba(124,47,194,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s;
}
.jsi-home-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 24px 60px -20px rgba(124,47,194,.4); }
.jsi-home-card:hover::before { opacity: 1; }
.jsi-home-card--lg { grid-column: span 2; }
.jsi-home-card--tall { grid-row: span 2; }
.jsi-home-card-icon {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,198,0,.18), rgba(124,47,194,.18)); color: var(--jh-gold); margin-bottom: 20px;
}
.jsi-home-card-icon svg { width: 22px; height: 22px; }
.jsi-home-card h3 { font-family: var(--jh-font-display); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--jh-white); }
.jsi-home-card p { font-size: 14.5px; line-height: 1.55; color: var(--jh-fg-dim); margin: 0; }
.jsi-home-card-visual { margin-top: 20px; }
.jsi-mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.jsi-mini-chart span { flex: 1; background: linear-gradient(180deg, var(--jh-gold), rgba(255,198,0,.15)); border-radius: 3px 3px 0 0; min-width: 3px; }

/* ══════════════════════ INTERACTIVE DASHBOARD ═══════════════════════════ */
.jsi-idash { border-radius: var(--jh-radius-lg); border: 1px solid var(--jh-border-2); background: linear-gradient(165deg, rgba(20,10,32,.7), rgba(8,4,14,.85)); backdrop-filter: blur(14px); overflow: hidden; box-shadow: 0 40px 90px -40px rgba(0,0,0,.7); }
.jsi-idash-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 26px; border-bottom: 1px solid var(--jh-border); }
.jsi-idash-tabs { display: flex; gap: 6px; }
.jsi-idash-tabs button {
  border: none; background: transparent; color: var(--jh-fg-faint); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s;
}
.jsi-idash-tabs button.is-active { background: var(--jh-glass-2); color: var(--jh-gold); }
.jsi-idash-live { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--jh-green); font-family: var(--jh-font-mono); }
.jsi-idash-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--jh-green); animation: jh-pulse-dot2 1.6s ease-out infinite; }
.jsi-idash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--jh-border); }
.jsi-idash-metric { background: var(--jh-bg-1); padding: 22px 24px; }
.jsi-idash-metric span { display: block; font-size: 12px; color: var(--jh-fg-faint); margin-bottom: 8px; }
.jsi-idash-metric strong { display: block; font-family: var(--jh-font-display); font-size: 26px; font-weight: 700; color: var(--jh-white); }
.jsi-idash-metric .delta { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 600; margin-top: 6px; }
.jsi-idash-metric .delta.up { color: var(--jh-green); }
.jsi-idash-metric .delta.down { color: var(--jh-red); }
.jsi-idash-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; }
.jsi-idash-chart-wrap { padding: 26px; border-right: 1px solid var(--jh-border); }
.jsi-idash-chart-wrap h5, .jsi-idash-list h5 { font-size: 13px; color: var(--jh-fg-dim); font-weight: 600; margin: 0 0 18px; }
.jsi-idash-linechart { position: relative; height: 160px; }
.jsi-idash-linechart svg { width: 100%; height: 100%; overflow: visible; }
.jsi-idash-linechart path.area { fill: url(#jhAreaGrad); opacity: .5; }
.jsi-idash-linechart path.line { fill: none; stroke: var(--jh-gold); stroke-width: 2.5; filter: drop-shadow(0 0 6px rgba(255,198,0,.6)); }
.jsi-idash-list { padding: 26px; }
.jsi-idash-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--jh-border); font-size: 13.5px; }
.jsi-idash-row:last-child { border-bottom: none; }
.jsi-idash-row-name { display: flex; align-items: center; gap: 10px; color: var(--jh-fg); }
.jsi-idash-row-name img { width: 18px; height: 18px; }
.jsi-idash-row-val { color: var(--jh-fg-dim); font-family: var(--jh-font-mono); font-size: 12.5px; }
.jsi-idash-bar-track { width: 60px; height: 5px; border-radius: 3px; background: var(--jh-border); overflow: hidden; margin-left: 10px; }
.jsi-idash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--jh-purple-glow), var(--jh-gold)); border-radius: 3px; }
.jsi-idash-releases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--jh-border); }
.jsi-idash-release { background: var(--jh-bg-1); padding: 20px 24px; display: flex; align-items: center; gap: 14px; }
.jsi-idash-release-art { width: 44px; height: 44px; border-radius: 10px; flex: none; background: linear-gradient(135deg, var(--jh-purple-2), var(--jh-purple)); overflow: hidden; position: relative; }
.jsi-idash-release-art img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .85; }
.jsi-idash-release-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,0,62,.5), rgba(87,23,138,.2)); }
.jsi-idash-release strong { display: block; font-size: 13.5px; color: var(--jh-white); }
.jsi-idash-release span { display: block; font-size: 11.5px; color: var(--jh-fg-faint); margin-top: 2px; }

/* ══════════════════════ SMART LINK DEMO ═════════════════════════════════ */
.jsi-home-demo-wrap { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1fr); gap: 60px; align-items: center; }
.jsi-home-checklist { margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.jsi-home-checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--jh-fg-dim); }
.jsi-home-check { flex: none; width: 20px; height: 20px; border-radius: 50%; background: rgba(61,220,151,.16); color: var(--jh-green); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.jsi-home-check svg { width: 11px; height: 11px; }
.jsi-demo-devices { display: flex; align-items: flex-end; gap: 26px; justify-content: center; }
.jsi-browser {
  width: 100%; max-width: 380px; border-radius: var(--jh-radius); overflow: hidden;
  background: var(--jh-bg-1); border: 1px solid var(--jh-border-2); box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
}
.jsi-browser-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--jh-bg-2); border-bottom: 1px solid var(--jh-border); }
.jsi-browser-dots { display: flex; gap: 6px; }
.jsi-browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--jh-border-2); }
.jsi-browser-url { flex: 1; font-family: var(--jh-font-mono); font-size: 11.5px; color: var(--jh-fg-faint); background: var(--jh-bg); padding: 5px 10px; border-radius: 6px; }
.jsi-browser-body { padding: 34px 26px; text-align: center; }
.jsi-browser-art { width: 108px; height: 108px; border-radius: 18px; margin: 0 auto 18px; background: linear-gradient(135deg, var(--jh-purple-2), var(--jh-purple)); box-shadow: 0 16px 40px -14px rgba(0,0,0,.6); position: relative; overflow: hidden; }
.jsi-browser-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jsi-browser-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,0,62,.5), rgba(87,23,138,.2)); }
.jsi-browser-title { font-family: var(--jh-font-display); font-weight: 700; font-size: 18px; color: var(--jh-white); }
.jsi-browser-artist { font-size: 13px; color: var(--jh-fg-faint); margin: 4px 0 22px; }
.jsi-browser-buttons { display: flex; flex-direction: column; gap: 10px; }
.jsi-browser-btn { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 12px; background: var(--jh-glass); border: 1px solid var(--jh-border); font-size: 14px; font-weight: 600; transition: background .2s, border-color .2s, transform .2s; }
.jsi-browser-btn:hover { background: var(--jh-glass-2); border-color: var(--jh-border-2); transform: translateY(-2px); }
.jsi-browser-btn img { width: 19px; height: 19px; }
.jsi-browser-fallback { display: block; margin-top: 16px; font-size: 12.5px; color: var(--jh-fg-faint); }
.jsi-demo-side { display: flex; flex-direction: column; gap: 16px; }
.jsi-demo-qr { width: 118px; padding: 14px; border-radius: var(--jh-radius); background: var(--jh-white); display: flex; align-items: center; justify-content: center; }
.jsi-demo-qr svg { width: 100%; height: 100%; }
.jsi-demo-share { display: flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 999px; background: var(--jh-glass); border: 1px solid var(--jh-border); font-size: 13px; font-weight: 600; color: var(--jh-fg); }
.jsi-demo-share svg { width: 15px; height: 15px; color: var(--jh-gold); }
.jsi-demo-themes { display: flex; gap: 8px; }
.jsi-demo-theme-dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: border-color .2s, transform .2s; }
.jsi-demo-theme-dot:hover { transform: scale(1.12); }
.jsi-demo-theme-dot.is-active { border-color: var(--jh-gold); }

/* ══════════════════════════ ANALYTICS ═══════════════════════════════════ */
.jsi-analytics-wrap { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr); gap: 28px; align-items: stretch; }
.jsi-home-diff { margin-top: 32px; padding: 24px; border-radius: var(--jh-radius); background: var(--jh-glass); border: 1px solid var(--jh-border); }
.jsi-home-diff h3 { font-family: var(--jh-font-display); font-size: 18px; margin: 0 0 10px; color: var(--jh-white); }
.jsi-home-diff p { font-size: 14px; line-height: 1.6; color: var(--jh-fg-dim); margin: 0; }
.jsi-home-diff strong { color: var(--jh-gold); }
.jsi-panel {
  border-radius: var(--jh-radius); background: linear-gradient(165deg, var(--jh-glass-2), var(--jh-glass));
  border: 1px solid var(--jh-border); padding: 26px; display: flex; flex-direction: column;
}
.jsi-panel-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.jsi-panel-head h4 { font-size: 15px; font-weight: 700; margin: 0; color: var(--jh-white); }
.jsi-panel-head span { font-size: 12px; color: var(--jh-fg-faint); }
.jsi-panel-chart { display: flex; align-items: flex-end; gap: 6px; height: 160px; flex: 1; }
.jsi-panel-chart span { flex: 1; background: linear-gradient(180deg, var(--jh-gold), var(--jh-purple-glow)); border-radius: 4px 4px 0 0; min-width: 4px; opacity: .9; transition: opacity .2s; }
.jsi-panel-chart span:hover { opacity: 1; }
.jsi-panel-legend { display: flex; gap: 20px; margin-top: 18px; font-size: 12.5px; color: var(--jh-fg-dim); }
.jsi-panel-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.jsi-panel-legend i.g { background: var(--jh-gold); } .jsi-panel-legend i.p { background: var(--jh-purple-glow); }

.jsi-geo-donut { display: flex; align-items: center; gap: 24px; margin-top: 20px; }
.jsi-geo-donut svg { width: 120px; height: 120px; flex: none; transform: rotate(-90deg); }
.jsi-geo-donut svg circle { fill: none; stroke-width: 14; }
.jsi-geo-legend { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.jsi-geo-legend span { display: flex; align-items: center; gap: 8px; color: var(--jh-fg-dim); }
.jsi-geo-legend i { width: 9px; height: 9px; border-radius: 50%; }

/* ══════════════════════════ COMPARISON ══════════════════════════════════ */
.jsi-compare { border-radius: var(--jh-radius-lg); border: 1px solid var(--jh-border-2); overflow: hidden; background: var(--jh-bg-1); }
.jsi-compare-table { width: 100%; border-collapse: collapse; }
.jsi-compare-table th, .jsi-compare-table td { padding: 18px 22px; text-align: center; border-bottom: 1px solid var(--jh-border); font-size: 14px; }
.jsi-compare-table th:first-child, .jsi-compare-table td:first-child { text-align: left; color: var(--jh-fg-dim); font-weight: 500; }
.jsi-compare-table thead th { font-family: var(--jh-font-display); font-size: 14.5px; padding: 22px; background: var(--jh-bg-2); }
.jsi-compare-table thead th.is-us { color: var(--jh-gold); position: relative; }
.jsi-compare-table thead th.is-us::after { content: 'JSI SmartLinks Pro'; display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--jh-fg-faint); margin-top: 2px; }
.jsi-compare-table tbody tr:last-child td { border-bottom: none; }
.jsi-compare-table tbody tr:hover { background: var(--jh-glass); }
.jsi-compare-table td.is-us { background: linear-gradient(180deg, rgba(255,198,0,.06), transparent); }
.jsi-compare-yes, .jsi-compare-no { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; align-items: center; justify-content: center; }
.jsi-compare-yes { background: rgba(61,220,151,.16); color: var(--jh-green); }
.jsi-compare-no { background: rgba(255,92,122,.12); color: var(--jh-red); }
.jsi-compare-yes svg, .jsi-compare-no svg { width: 13px; height: 13px; }
.jsi-compare-partial { font-size: 12.5px; color: var(--jh-fg-faint); }

/* ══════════════════════════ PRICING ═════════════════════════════════════ */
.jsi-pricing-toggle { display: inline-flex; padding: 5px; border-radius: 999px; background: var(--jh-glass); border: 1px solid var(--jh-border); margin-bottom: 52px; }
.jsi-pricing-toggle button { border: none; background: transparent; color: var(--jh-fg-dim); font-size: 13.5px; font-weight: 600; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: background .25s, color .25s; display: flex; align-items: center; gap: 8px; }
.jsi-pricing-toggle button.is-active { background: linear-gradient(135deg, var(--jh-gold), var(--jh-gold-2)); color: var(--jh-purple); }
.save-badge { font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; background: rgba(61,220,151,.18); color: var(--jh-green); }
.jsi-pricing-toggle button.is-active .save-badge { background: rgba(37,0,62,.18); color: var(--jh-purple); }
.jsi-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.jsi-price-card {
  position: relative; padding: 34px 28px; border-radius: var(--jh-radius-lg); background: var(--jh-glass);
  border: 1px solid var(--jh-border); transition: transform .35s var(--jh-ease), box-shadow .35s;
}
.jsi-price-card:hover { transform: translateY(-6px); }
.jsi-price-card--featured { background: linear-gradient(165deg, rgba(255,198,0,.09), var(--jh-glass)); border-color: rgba(255,198,0,.4); box-shadow: 0 30px 70px -30px rgba(255,198,0,.28); }
.jsi-price-badge { position: absolute; top: -13px; left: 28px; padding: 6px 14px; border-radius: 999px; background: linear-gradient(135deg, var(--jh-gold), var(--jh-gold-2)); color: var(--jh-purple); font-size: 11.5px; font-weight: 800; letter-spacing: .02em; }
.jsi-price-name { font-size: 14px; font-weight: 600; color: var(--jh-fg-dim); margin-bottom: 14px; }
.jsi-price-amount { display: flex; align-items: baseline; gap: 6px; }
.jsi-price-amount strong { font-family: var(--jh-font-display); font-size: 44px; font-weight: 700; color: var(--jh-white); letter-spacing: -0.02em; }
.jsi-price-amount span { font-size: 14px; color: var(--jh-fg-faint); }
.jsi-price-annual { font-size: 12px; color: var(--jh-fg-faint); min-height: 18px; margin-bottom: 22px; }
.jsi-price-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.jsi-price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--jh-fg-dim); }
.jsi-price-features li.is-off { opacity: .38; text-decoration: line-through; }
.jsi-price-features .tick { flex: none; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,198,0,.15); color: var(--jh-gold); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.jsi-price-features .tick svg { width: 10px; height: 10px; }
.jsi-price-card .jsi-home-btn { width: 100%; justify-content: center; }

/* ══════════════════════════ TESTIMONIALS ════════════════════════════════ */
.jsi-testi-wrap { position: relative; }
.jsi-testi-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 26px; scrollbar-width: none; }
.jsi-testi-track::-webkit-scrollbar { display: none; }
.jsi-testi-card {
  flex: 0 0 min(380px, 82vw); scroll-snap-align: start; padding: 30px; border-radius: var(--jh-radius-lg);
  background: linear-gradient(165deg, var(--jh-glass-2), var(--jh-glass)); border: 1px solid var(--jh-border);
}
.jsi-testi-stars { display: flex; gap: 3px; color: var(--jh-gold); margin-bottom: 18px; }
.jsi-testi-stars svg { width: 15px; height: 15px; }
.jsi-testi-quote { font-size: 15px; line-height: 1.65; color: var(--jh-fg); margin: 0 0 24px; }
.jsi-testi-person { display: flex; align-items: center; gap: 12px; }
.jsi-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--jh-purple-2), var(--jh-purple-glow)); display: flex; align-items: center; justify-content: center; font-family: var(--jh-font-display); font-weight: 700; font-size: 15px; color: var(--jh-white); flex: none; overflow: hidden; }
.jsi-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.jsi-testi-name { font-size: 13.5px; font-weight: 700; color: var(--jh-white); }
.jsi-testi-role { font-size: 12px; color: var(--jh-fg-faint); }
.jsi-testi-metric { margin-left: auto; text-align: right; }
.jsi-testi-metric strong { display: block; font-family: var(--jh-font-mono); font-size: 15px; color: var(--jh-green); }
.jsi-testi-metric span { font-size: 10.5px; color: var(--jh-fg-faint); }
.jsi-testi-nav { display: flex; gap: 10px; justify-content: center; }
.jsi-testi-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--jh-border-2); background: var(--jh-glass); color: var(--jh-fg); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, transform .2s; }
.jsi-testi-nav button:hover { background: var(--jh-glass-2); transform: scale(1.06); }
.jsi-testi-nav svg { width: 16px; height: 16px; }

/* ══════════════════════════ FAQ ══════════════════════════════════════════ */
.jsi-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.jsi-faq-item { border-radius: var(--jh-radius); background: var(--jh-glass); border: 1px solid var(--jh-border); overflow: hidden; transition: border-color .25s; }
.jsi-faq-item.is-open { border-color: var(--jh-border-2); }
.jsi-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; background: none; border: none; color: var(--jh-fg); font-size: 15px; font-weight: 600; text-align: left; cursor: pointer; }
.jsi-faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--jh-glass-2); display: flex; align-items: center; justify-content: center; transition: transform .3s var(--jh-ease); }
.jsi-faq-icon svg { width: 13px; height: 13px; color: var(--jh-fg-dim); }
.jsi-faq-item.is-open .jsi-faq-icon { transform: rotate(45deg); background: var(--jh-gold); }
.jsi-faq-item.is-open .jsi-faq-icon svg { color: var(--jh-purple); }
.jsi-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--jh-ease); }
.jsi-faq-a p { padding: 0 26px 22px; margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--jh-fg-dim); }

/* ══════════════════════════ FINAL CTA ════════════════════════════════════ */
.jsi-home-cta { position: relative; padding: 130px 0; text-align: center; overflow: hidden; }
.jsi-home-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 32px; }
.jsi-home-cta-inner h2 { font-family: var(--jh-font-display); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3.1rem); line-height: 1.12; letter-spacing: -0.02em; margin: 18px 0 14px; color: var(--jh-white); }
.jsi-home-cta-inner p { font-size: 1.05rem; color: var(--jh-fg-dim); margin: 0 0 34px; }
.jsi-home-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.jsi-home-btn-primary.jsi-home-btn-lg { box-shadow: 0 0 0 0 rgba(255,198,0,.5); animation: jh-glow-pulse 2.6s ease-in-out infinite; }
@keyframes jh-glow-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,198,0,.35); } 50% { box-shadow: 0 0 0 14px rgba(255,198,0,0); } }

/* ══════════════════════════ FOOTER ═══════════════════════════════════════ */
.jsi-home-footer { position: relative; z-index: 1; padding: 80px 0 40px; border-top: 1px solid var(--jh-border); }
.jsi-home-footer-inner { max-width: var(--jh-max); margin: 0 auto; padding: 0 32px; }
.jsi-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; }
.jsi-footer-brand-col { padding-right: 20px; }
.jsi-home-footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--jh-font-display); font-weight: 700; font-size: 16px; color: var(--jh-white); margin-bottom: 14px; }
.jsi-home-logo-mark { color: var(--jh-gold); }
.jsi-footer-tagline { font-size: 13.5px; color: var(--jh-fg-faint); line-height: 1.6; max-width: 260px; }
.jsi-footer-col h6 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--jh-fg-faint); font-weight: 600; margin: 0 0 18px; }
.jsi-footer-col a { display: block; font-size: 13.5px; color: var(--jh-fg-dim); margin-bottom: 12px; transition: color .2s; }
.jsi-footer-col a:hover { color: var(--jh-gold); }
.jsi-footer-newsletter { display: flex; gap: 8px; margin-top: 6px; }
.jsi-footer-newsletter input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--jh-border-2); background: var(--jh-bg-1); color: var(--jh-fg); font-size: 13px; }
.jsi-footer-newsletter input::placeholder { color: var(--jh-fg-faint); }
.jsi-footer-newsletter button { padding: 11px 16px; border-radius: 10px; border: none; background: var(--jh-gold); color: var(--jh-purple); font-weight: 700; font-size: 13px; cursor: pointer; }
.jsi-home-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--jh-border); font-size: 12.5px; color: var(--jh-fg-faint); flex-wrap: wrap; gap: 16px; }
.jsi-footer-socials { display: flex; gap: 10px; }
.jsi-footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--jh-glass); border: 1px solid var(--jh-border); display: flex; align-items: center; justify-content: center; color: var(--jh-fg-dim); transition: background .2s, color .2s; }
.jsi-footer-socials a:hover { background: var(--jh-gold); color: var(--jh-purple); }
.jsi-footer-socials svg { width: 15px; height: 15px; }

/* ══════════════════════════ RESPONSIVE ═══════════════════════════════════ */
@media (max-width: 1080px) {
  .jsi-home-bento { grid-template-columns: repeat(2, 1fr); }
  .jsi-home-card--lg { grid-column: span 2; }
  .jsi-idash-grid, .jsi-idash-releases { grid-template-columns: repeat(2, 1fr); }
  .jsi-footer-grid { grid-template-columns: 1fr 1fr; }
  .jsi-footer-brand-col { grid-column: span 2; }
}
@media (max-width: 960px) {
  .jsi-home-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .jsi-home-hero-cta { justify-content: center; }
  .jsi-home-trust { max-width: 100%; }
  .jsi-home-trust-marquee { max-width: 100%; }
  .jsi-home-sub { margin-left: auto; margin-right: auto; }
  .jsi-dash-stage { margin-top: 40px; }
  .jsi-home-demo-wrap, .jsi-analytics-wrap { grid-template-columns: 1fr; }
  .jsi-idash-body { grid-template-columns: 1fr; }
  .jsi-idash-chart-wrap { border-right: none; border-bottom: 1px solid var(--jh-border); }
  .jsi-compare-table { display: block; overflow-x: auto; }
}
@media (max-width: 900px) {
  .jsi-orbit-card { display: none; }
}
@media (max-width: 680px) {
  .jsi-home-section { padding: 88px 0; }
  .jsi-home-hero { padding: 132px 0 80px; }
  .jsi-home-section-inner { padding: 0 20px; }
  .jsi-home-bento { grid-template-columns: 1fr; }
  .jsi-home-card--lg, .jsi-home-card--tall { grid-column: span 1; grid-row: auto; }
  .jsi-idash-grid, .jsi-idash-releases { grid-template-columns: 1fr; }
  .jsi-footer-grid { grid-template-columns: 1fr; }
  .jsi-footer-brand-col { grid-column: span 1; }
  .jsi-home-cta { padding: 90px 0; }
  .jsi-analytics-wrap { gap: 20px; }
  .jsi-idash-bar { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .jsi-idash-tabs { flex-wrap: wrap; }
  .jsi-demo-devices { flex-direction: column; align-items: center; }
  .jsi-demo-side { width: 100%; max-width: 380px; align-items: center; }
  .jsi-footer-newsletter { flex-direction: column; }
  .jsi-footer-newsletter button { width: 100%; }
}
@media (max-width: 420px) {
  .jsi-home-hero-cta .jsi-home-btn-lg,
  .jsi-home-cta-actions .jsi-home-btn-lg { padding: 13px 22px !important; font-size: 14px !important; }
  .jsi-home-h1 { font-size: clamp(2.1rem, 8vw, 2.6rem); }
  .jsi-price-amount strong { font-size: 34px; }
  .jsi-compare-table th, .jsi-compare-table td { padding: 14px 14px; font-size: 12.5px; }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .jsi-home * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   THE ARTIST JOURNEY — storytelling timeline section
   ═══════════════════════════════════════════════════════════════════════ */
.jsi-journey { position: relative; }
.jsi-journey-track {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.jsi-journey-track::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--jh-gold) 0%, rgba(255,198,0,.25) 60%, transparent 100%);
  opacity: .55;
}
.jsi-journey-step {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 30px 0;
  align-items: flex-start;
}
.jsi-journey-marker {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--jh-glass-2);
  border: 1px solid var(--jh-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jh-gold);
  z-index: 1;
}
.jsi-journey-marker svg { width: 28px; height: 28px; }
.jsi-journey-num {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--jh-gold);
  color: var(--jh-purple);
  font-family: var(--jh-font-mono);
  font-size: 11px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jsi-journey-copy { padding-top: 8px; }
.jsi-journey-copy h3 {
  font-family: var(--jh-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--jh-white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.jsi-journey-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--jh-fg-dim);
  margin: 0;
  max-width: 620px;
}
@media (max-width: 640px) {
  .jsi-journey-track::before { left: 27px; }
  .jsi-journey-marker { width: 56px; height: 56px; border-radius: 16px; }
  .jsi-journey-marker svg { width: 22px; height: 22px; }
  .jsi-journey-step { gap: 18px; padding: 22px 0; }
  .jsi-journey-copy h3 { font-size: 1.1rem; }
}
