:root {
  --navy: #022062;
  --gold: #EBCF76;
  --warm: #F7F4EE;
  --text: #1f2937;
  --muted: #5f6b7a;
  --border: rgba(2,32,98,0.10);
  --shadow: 0 12px 34px rgba(2,32,98,0.08);
  --shadow-soft: 0 8px 20px rgba(2,32,98,0.06);
  --container: 1200px;
  --font-headline: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.jh-locked {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 50% -10%, rgba(235,207,118,0.18), transparent 28rem),
    radial-gradient(circle at -10% 40%, rgba(2,32,98,0.05), transparent 22rem),
    radial-gradient(circle at 110% 100%, rgba(2,32,98,0.06), transparent 24rem),
    var(--warm);
}

img { display: block; max-width: 100%; }

.jl-shell {
  width: min(100%, var(--container));
  min-height: 100vh;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.jl-header {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.25rem;
}

.jl-header-mobile {
  display: none;
}

.jl-logo {
  width: clamp(170px, 24vw, 235px);
  height: auto;
}

.jl-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.jl-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
  min-height: calc(100vh - 175px);
}

.jl-copy {
  max-width: 42rem;
}

.jl-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: .6rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: rgba(2,32,98,0.70);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
}

.jl-title {
  margin: 1rem 0 0;
  color: var(--navy);
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.045em;
}

.jl-lead {
  margin: 1.2rem 0 0;
  color: rgba(31,41,55,0.96);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
}

.jl-sub {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(2,32,98,0.62);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.jl-orb {
  position: relative;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.35rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.jl-orb::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px dashed rgba(2,32,98,0.10);
  border-radius: 2rem;
}

.jl-spark {
  position: absolute;
  border-radius: 999px;
}

.jl-gold {
  background: var(--gold);
  box-shadow: 0 4px 10px rgba(235,207,118,0.40);
}

.jl-blue {
  background: rgba(2,32,98,0.18);
}

.jl-s1 { width: 12px; height: 12px; left: 2.2rem; top: 2.5rem; }
.jl-s2 { width: 10px; height: 10px; right: 2.5rem; top: 3rem; }
.jl-s3 { width: 9px; height: 9px; left: 3.25rem; bottom: 3rem; }
.jl-s4 { width: 12px; height: 12px; right: 3rem; bottom: 2.3rem; }

.jl-center-card {
  position: relative;
  width: min(100%, 18rem);
  padding: 2rem 1.5rem;
  border-radius: 2rem;
  background: var(--warm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(2,32,98,0.08);
  text-align: center;
}

.jl-mark-wrap {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid rgba(2,32,98,0.08);
  box-shadow: var(--shadow-soft);
}

.jl-mark-wrap img {
  width: 2.75rem;
  height: 2.75rem;
}

.jl-center-title {
  margin: 1.1rem 0 .35rem;
  color: var(--navy);
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 600;
}

.jl-center-copy {
  margin: 0;
  color: rgba(2,32,98,0.66);
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.65;
}

.jl-center-copy-mobile {
  display: none;
}

.jl-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .95rem 0;
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: rgba(2,32,98,0.62);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .jl-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: auto;
  }

  .jl-copy {
    order: 2;
    max-width: none;
  }

  .jl-orb {
    order: 1;
  }
}

@media (max-width: 720px) {
  .jl-shell {
    min-height: auto;
    padding: 1rem;
  }

  .jl-header-mobile {
    display: block;
    margin-bottom: .9rem;
  }

  .jl-main {
    display: block;
    flex: 0 0 auto;
  }

  .jl-hero {
    grid-template-columns: 1fr;
    gap: .85rem;
    min-height: auto;
  }

  .jl-copy {
    order: 2;
    max-width: none;
  }

  .jl-eyebrow {
    display: none;
  }

  .jl-orb {
    order: 1;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 2rem;
    padding: .75rem;
    background: rgba(255,255,255,0.76);
    box-shadow: var(--shadow-soft);
  }

  .jl-orb::before {
    display: none;
  }

  .jl-s1, .jl-s2, .jl-s3, .jl-s4 {
    display: none;
  }

  .jl-center-card {
    width: 100%;
    max-width: none;
    padding: 1rem .95rem;
    border-radius: 1.5rem;
    min-height: 0;
  }

  .jl-mark-wrap {
    display: none;
  }

  .jl-center-title {
    display: none;
  }

  .jl-center-copy-desktop {
    display: none;
  }

  .jl-center-copy-mobile {
    display: block;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(2,32,98,0.72);
    font-weight: 500;
  }

  .jl-title {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
    margin-top: .1rem;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .jl-lead {
    font-size: 1rem;
    line-height: 1.62;
    margin-top: .9rem;
  }

  .jl-sub {
    font-size: .98rem;
    line-height: 1.66;
    margin-top: .75rem;
  }

  .jl-footer {
    font-size: .84rem;
    gap: .5rem;
    margin-top: 1rem;
  }
}
