/* ============================================================
   JNR BUILDS — Main Stylesheet
   Dark theme, Baloo 2 + Nunito, matching demo8.html design
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
    --jnr-bg:       #0c0c14;
    --jnr-surface:  #13131f;
    --jnr-surface2: #1a1a2e;
    --jnr-text:     #f0ede8;
    --jnr-muted:    #8888a0;
    --jnr-border:   #22223a;
    --jnr-yellow:   #ffe135;
    --jnr-orange:   #ff6b35;
    --jnr-teal:     #00d9c0;
    --jnr-purple:   #a855f7;
    --jnr-pink:     #ff4d8d;

    --jnr-radius:   20px;
    --jnr-radius-sm: 12px;
    --jnr-max-w:    1160px;
    --jnr-nav-h:    72px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--jnr-bg);
    color: var(--jnr-text);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
    left: 16px; top: 16px; width: auto; height: auto;
    background: var(--jnr-yellow); color: var(--jnr-bg);
    padding: 8px 16px; border-radius: 8px; font-weight: 700; z-index: 9999;
}

/* ─── CONTAINER ─── */
.jnr-container {
    max-width: var(--jnr-max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.jnr-container--narrow {
    max-width: 800px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--jnr-yellow);
    color: var(--jnr-bg);
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: 15px;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
}
.btn-primary:hover {
    animation: cardDance 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    background: #ffd600;
}

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: var(--jnr-text);
    font-family: 'Nunito', sans-serif;
    font-weight: 600; font-size: 15px;
    padding: 14px 32px;
    border-radius: 100px;
    border: 1px solid var(--jnr-border);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    text-decoration: none;
}
.btn-secondary:hover {
    border-color: var(--jnr-muted);
    background: rgba(255,255,255,0.04);
}

@keyframes cardDance {
    0%   { transform: translateY(0) rotate(0deg) scale(1); }
    10%  { transform: translateY(-6px) rotate(-2deg) scale(1.03); }
    20%  { transform: translateY(-4px) rotate(2.5deg) scale(1.04); }
    30%  { transform: translateY(-8px) rotate(-1.5deg) scale(1.05); }
    50%  { transform: translateY(-6px) rotate(-2deg) scale(1.03); }
    70%  { transform: translateY(-5px) rotate(-1deg) scale(1.02); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--jnr-yellow);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px; color: var(--jnr-muted); line-height: 1.65;
    max-width: 52ch; margin: 12px auto 0;
    text-align: center;
}
h1, h2, h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
h2 {
    font-size: clamp(28px, 4vw, 52px);
    margin-bottom: 12px;
    text-align: center;
}

/* ============================================================
   NAV — bulletproof layout
   ============================================================ */
.jnr-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(12, 12, 20, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--jnr-border);
    height: var(--jnr-nav-h);
    overflow: hidden;
}

/* Admin bar offsets */
.admin-bar .jnr-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .jnr-nav { top: 46px; } }

.jnr-nav-inner {
    max-width: var(--jnr-max-w);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--jnr-nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
}

/* ── LOGO SLOT ── hardcoded box, nothing escapes */
.jnr-nav-logo {
    flex: 0 0 auto;
    width: 155px;
    height: 44px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-decoration: none;
    line-height: 1;
}

/* Catch ALL possible WP logo wrappers */
.jnr-nav-logo * { max-height: 44px !important; }

.jnr-nav-logo img {
    display: block !important;
    height: 44px !important;
    width: auto !important;
    max-height: 44px !important;
    max-width: 155px !important;
    object-fit: contain !important;
    flex-shrink: 0;
}

/* Text fallback logo */
.jnr-logo-text {
    font-family: 'Baloo 2', cursive;
    font-size: 22px; font-weight: 800;
    color: var(--jnr-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1;
}
.jnr-logo-text .jnr-logo-accent { color: var(--jnr-yellow); }

/* ── MENU ── */
.jnr-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.jnr-menu-list {
    display: flex; gap: 4px; align-items: center; list-style: none;
    margin: 0; padding: 0;
}
.jnr-menu-list li a {
    font-size: 14px; font-weight: 600;
    color: var(--jnr-muted);
    padding: 8px 12px; border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.jnr-menu-list li a:hover,
.jnr-menu-list li.current-menu-item a {
    color: var(--jnr-text);
    background: rgba(255,255,255,0.06);
}

/* ── NAV CTA ── */
.jnr-nav-cta {
    flex: 0 0 auto;
    font-size: 13px !important;
    padding: 9px 18px !important;
    white-space: nowrap;
    line-height: 1 !important;
}

/* ── MOBILE TOGGLE ── */
.jnr-mobile-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    justify-content: center; align-items: center;
    background: none; border: none;
    width: 36px; height: 36px;
    padding: 4px; flex-shrink: 0;
    cursor: pointer;
}
.jnr-mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--jnr-text); border-radius: 2px;
    transition: all 0.3s;
}
.jnr-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jnr-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.jnr-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.jnr-mobile-menu {
    display: none;
    position: fixed;
    top: var(--jnr-nav-h); left: 0; right: 0;
    background: rgba(12,12,20,0.99);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--jnr-border);
    padding: 24px 32px 32px;
    flex-direction: column; gap: 8px;
    z-index: 9998;
}
.admin-bar .jnr-mobile-menu { top: calc(var(--jnr-nav-h) + 32px); }
.jnr-mobile-menu.is-open { display: flex; }
.jnr-mobile-list { list-style: none; margin: 0; padding: 0; }
.jnr-mobile-list li a {
    display: block; padding: 14px 0;
    font-size: 18px; font-weight: 700;
    color: var(--jnr-text);
    border-bottom: 1px solid var(--jnr-border);
    text-decoration: none;
}
.jnr-mobile-menu .btn-primary {
    margin-top: 20px;
    text-align: center;
    display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.jnr-hero {
    min-height: 100dvh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--jnr-nav-h);
}

/* When admin bar is showing, push hero down further */
.admin-bar .jnr-hero { padding-top: calc(var(--jnr-nav-h) + 32px); }
@media screen and (max-width: 782px) {
    .admin-bar .jnr-hero { padding-top: calc(var(--jnr-nav-h) + 46px); }
}

.jnr-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

#jnr-hero-canvas {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0.6;
}

.jnr-hero-left {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: flex-start;
    min-height: 1px;
}

.jnr-hero-right {
    position: relative;
    height: 400px;
    z-index: 2;
    overflow: hidden;
}

/* Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,225,53,0.1);
    border: 1px solid rgba(255,225,53,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px; font-weight: 600;
    color: var(--jnr-yellow);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--jnr-yellow);
    animation: blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* H1 */
.jnr-hero h1 {
    font-size: clamp(36px, 4.5vw, 68px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-align: left;
}
.jnr-hero h1 .line-yellow {
    color: var(--jnr-yellow);
    display: block;
}

/* Sub */
.hero-sub {
    font-size: 17px; color: var(--jnr-muted); line-height: 1.65;
    max-width: 46ch; margin-bottom: 36px;
    text-align: left;
}
.hero-sub strong { color: var(--jnr-text); font-weight: 600; }

/* CTAs */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats */
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num {
    font-family: 'Baloo 2', cursive;
    font-size: 26px; font-weight: 800;
    color: var(--jnr-yellow);
    letter-spacing: -0.02em;
}
.stat-label { font-size: 11px; color: var(--jnr-muted); margin-top: 2px; }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    font-size: 11px; color: var(--jnr-muted);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: floatDown 2s ease-in-out infinite; z-index: 2;
}
.scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid var(--jnr-muted);
    border-bottom: 2px solid var(--jnr-muted);
    transform: rotate(45deg);
}
@keyframes floatDown { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── HERO RIGHT ─── */
.jnr-hero-right {
    position: relative;
    height: 620px;
    z-index: 2;
}

/* Scene chips */
.scene-chip {
    position: absolute; z-index: 5;
    background: rgba(13,13,22,0.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
    padding: 7px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
    animation: chipFloat 3.5s ease-in-out infinite;
    pointer-events: none;
}
.chip-a { top: 6%; left: 8%; animation-delay:0s; border-color:rgba(168,85,247,0.35); color:#c084fc; }
.chip-b { top: 20%; right: 4%; animation-delay:1.2s; border-color:rgba(0,217,192,0.35); color:#00d9c0; }
.chip-c { top: 36%; right: 3%; animation-delay:2.4s; border-color:rgba(255,225,53,0.35); color:#ffe135; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Floating feature cards */
.feat-card {
    position: absolute; z-index: 1;
    background: rgba(13,13,22,0.9); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px; padding: 14px 18px; min-width: 170px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: featFloat 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes featFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Floating cards — top corners only, z-index below characters */
.fc-day30  { top: 2%;    right: 2%;  border-color: rgba(0,217,192,0.3);  animation-delay:0s;   z-index:1; }
.fc-track  { top: 42%;  left: 2%;   border-color: rgba(168,85,247,0.3); animation-delay:1.4s; z-index:1; }
.fc-parent { bottom: 2%; right: 2%; border-color: rgba(255,225,53,0.3); animation-delay:2.7s; max-width:190px; z-index:1; }
.fc-ai     { top: 2%;   left: 2%;   border-color: rgba(255,107,53,0.35);animation-delay:0.7s; min-width:180px; z-index:1; }

.fc-label  { font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--jnr-muted); margin-bottom:8px; }
.fc-day30 .fc-label { color:#00d9c0; }
.fc-track  .fc-label { color:#a855f7; }
.fc-parent .fc-label { color:var(--jnr-yellow); }
.fc-ai-label { color:var(--jnr-orange) !important; }

.fc-value  { font-family:'Baloo 2',cursive; font-size:22px; font-weight:800; color:var(--jnr-text); line-height:1; margin-bottom:4px; }
.fc-sub    { font-size:11px; color:var(--jnr-muted); line-height:1.4; }
.fc-row    { display:flex; align-items:center; gap:8px; }
.fc-dot    { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.fc-track-text { font-size:12px; font-weight:600; color:var(--jnr-text); }
.fc-msg    { font-size:12px; color:var(--jnr-text); line-height:1.5; font-style:italic; margin-bottom:6px; }
.fc-time   { font-size:10px; color:var(--jnr-muted); }

.fc-ai-row { display:flex; align-items:center; gap:8px; margin-top:4px; }
.fc-ai-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; background:var(--jnr-yellow); box-shadow:0 0 6px 2px rgba(255,225,53,0.5); animation:blink 1.8s ease-in-out infinite; }
.fc-ai-text { font-size:11px; font-weight:600; color:var(--jnr-text); display:flex; align-items:center; gap:6px; }
.fc-ai-status { font-size:9px; font-weight:700; letter-spacing:0.08em; background:rgba(255,225,53,0.12); color:var(--jnr-yellow); border-radius:100px; padding:1px 6px; }

/* Character slots */
.char-slot {
    position: absolute;
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer; z-index: 3;
    bottom: 0;
}

/* Even spacing across the hero right column */
#slot-jboy  { left: 0%;   bottom: 0; }
#slot-jgirl { left: 25%;  bottom: 0; }
#slot-sboy  { left: 50%;  bottom: 0; }
#slot-sgirl { left: 72%;  bottom: 0; }

.char-img {
    display: block;
    height: 280px;        /* all same visual height */
    width: auto;
    position: relative; z-index: 3;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
    transform-origin: bottom center;
    user-select: none;
    pointer-events: none;
}

/* Seniors slightly taller for depth effect */
#slot-sboy .char-img,
#slot-sgirl .char-img { height: 310px; }

.char-platform {
    width: 88px; height: 22px; border-radius: 50%;
    position: relative; z-index: 2; margin-top: -6px;
    transform: rotateX(60deg);
    transition: transform 0.35s, box-shadow 0.35s;
}
.platform-purple { background:rgba(168,85,247,0.3); box-shadow:0 0 20px 4px rgba(168,85,247,0.5); }
.platform-yellow { background:rgba(255,225,53,0.3); box-shadow:0 0 20px 4px rgba(255,225,53,0.5); }
.platform-teal   { background:rgba(0,217,192,0.3);  box-shadow:0 0 20px 4px rgba(0,217,192,0.5); }
.platform-orange { background:rgba(255,107,53,0.3); box-shadow:0 0 20px 4px rgba(255,107,53,0.5); }
.char-shadow { width:64px; height:10px; border-radius:50%; margin-top:3px; background:radial-gradient(ellipse,rgba(0,0,0,0.4) 0%,transparent 70%); }

.char-bubble {
    background:rgba(13,13,22,0.92); backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1); border-radius:14px;
    padding:8px 14px; font-size:12px; font-weight:700; color:var(--jnr-text);
    white-space:nowrap; margin-bottom:10px; position:relative; z-index:4;
    opacity:0; transform:translateY(10px) scale(0.88);
    transition:opacity 0.3s cubic-bezier(0.34,1.56,0.64,1), transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events:none;
}
.char-bubble::after {
    content:''; position:absolute; bottom:-8px; left:50%; transform:translateX(-50%);
    border-left:7px solid transparent; border-right:7px solid transparent;
    border-top:9px solid rgba(13,13,22,0.92);
}
#slot-jboy  .char-bubble { border-color:rgba(168,85,247,0.5); }
#slot-jgirl .char-bubble { border-color:rgba(255,225,53,0.5); }
#slot-sboy  .char-bubble { border-color:rgba(0,217,192,0.5); }
#slot-sgirl .char-bubble { border-color:rgba(255,107,53,0.5); }

.char-slot:hover .char-img  { transform:translateY(-20px) scale(1.1); filter:drop-shadow(0 28px 44px rgba(0,0,0,0.65)) brightness(1.06); }
.char-slot:hover .char-bubble  { opacity:1; transform:translateY(0) scale(1); }
.char-slot:hover .char-platform { transform:rotateX(60deg) scale(1.2); }
#slot-jboy:hover  .char-platform { box-shadow:0 0 48px 14px rgba(168,85,247,0.75); }
#slot-jgirl:hover .char-platform { box-shadow:0 0 48px 14px rgba(255,225,53,0.75); }
#slot-sboy:hover  .char-platform { box-shadow:0 0 48px 14px rgba(0,217,192,0.75); }
#slot-sgirl:hover .char-platform { box-shadow:0 0 48px 14px rgba(255,107,53,0.75); }

/* Idle bob */
.char-slot.bob-a { animation: idleBobA 3.2s ease-in-out infinite; }
.char-slot.bob-b { animation: idleBobB 3.6s ease-in-out infinite; }
.char-slot.bob-c { animation: idleBobC 2.9s ease-in-out infinite; }
.char-slot.bob-d { animation: idleBobD 3.4s ease-in-out infinite; }
@keyframes idleBobA { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-10px)} }
@keyframes idleBobB { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(5px)} }
@keyframes idleBobC { 0%,100%{transform:translateY(-3px)} 50%{transform:translateY(-13px)} }
@keyframes idleBobD { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-8px)} }

/* ============================================================
   STICKY STACK SECTION
   ============================================================ */
.jnr-stack-section { padding: 0; }
.jnr-stack-wrapper { max-width:var(--jnr-max-w); margin:0 auto; padding:80px 24px 160px; }
.jnr-stack-intro { text-align:center; margin-bottom:80px; }
.jnr-stack-intro h2 em { font-style:normal; color:var(--jnr-teal); }
.jnr-stack-intro p { font-size:17px; color:var(--jnr-muted); max-width:50ch; margin:0 auto; }
.jnr-stack-container { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }

/* Sticky visual */
.jnr-stack-visual { position:sticky; top:100px; height:fit-content; }
.phone-frame {
    background:var(--jnr-surface); border:1px solid var(--jnr-border);
    border-radius:28px; overflow:hidden;
    box-shadow:0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-notch { height:48px; background:var(--jnr-surface); display:flex; align-items:center; justify-content:center; border-bottom:1px solid var(--jnr-border); }
.phone-notch-pill { width:80px; height:20px; background:var(--jnr-bg); border-radius:10px; }
.phone-screen { min-height:320px; position:relative; overflow:hidden; aspect-ratio:16/10; }

.screen-state {
    position:absolute; inset:0; opacity:0; transform:translateY(12px);
    transition:opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.screen-state.active { opacity:1; transform:translateY(0); }

/* Screen mock UI */
.screen-mock { width:100%; height:100%; display:flex; flex-direction:column; }
.sm-header {
    padding:14px 18px; font-size:13px; font-weight:700;
    letter-spacing:0.06em; text-transform:uppercase;
}
.sm-header.teal   { background:rgba(0,217,192,0.1);  color:var(--jnr-teal);   border-bottom:1px solid rgba(0,217,192,0.2); }
.sm-header.orange { background:rgba(255,107,53,0.1); color:var(--jnr-orange); border-bottom:1px solid rgba(255,107,53,0.2); }
.sm-header.purple { background:rgba(168,85,247,0.1); color:var(--jnr-purple); border-bottom:1px solid rgba(168,85,247,0.2); }
.sm-header.yellow { background:rgba(255,225,53,0.1); color:var(--jnr-yellow); border-bottom:1px solid rgba(255,225,53,0.2); }
.sm-body { padding:20px 18px; flex:1; display:flex; flex-direction:column; gap:14px; }
.sm-day-label { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--jnr-muted); }
.sm-prompt { font-size:14px; line-height:1.55; color:var(--jnr-text); font-style:italic; }
.sm-ai-btn {
    display:inline-flex; align-items:center; gap:8px;
    padding:10px 18px; border-radius:100px; font-size:13px; font-weight:700;
    cursor:default; align-self:flex-start; margin-top:4px;
}
.teal-btn   { background:rgba(0,217,192,0.1);  color:var(--jnr-teal);   border:1px solid rgba(0,217,192,0.3); }
.orange-btn { background:rgba(255,107,53,0.1); color:var(--jnr-orange); border:1px solid rgba(255,107,53,0.3); }
.purple-btn { background:rgba(168,85,247,0.1); color:var(--jnr-purple); border:1px solid rgba(168,85,247,0.3); }
.sm-progress { background:var(--jnr-surface2); border-radius:4px; height:5px; overflow:hidden; margin-top:auto; }
.sm-bar { height:100%; border-radius:4px; background:var(--jnr-teal); }
.orange-bar { background:var(--jnr-orange); }
.purple-bar { background:var(--jnr-purple); }
.sm-launch-big { font-size:42px; line-height:1; margin-bottom:4px; }
.sm-cert-row { display:flex; align-items:center; gap:14px; background:rgba(255,225,53,0.05); border:1px solid rgba(255,225,53,0.15); border-radius:12px; padding:14px 16px; }
.sm-cert-icon { font-size:24px; }

/* Feature cards */
.jnr-stack-features { display:flex; flex-direction:column; gap:28px; padding:20px 0 40px; }
.feature-card {
    border-radius:var(--jnr-radius); border:1px solid var(--jnr-border);
    background:var(--jnr-surface); padding:36px 32px;
    opacity:0.3; transform:translateY(8px);
    transition:opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.feature-card.active { opacity:1; transform:translateY(0); }
.feature-card.active:hover { animation:cardDance 0.6s cubic-bezier(0.36,0.07,0.19,0.97) both; }
.feature-card.active.c1 { border-color:var(--jnr-teal);   box-shadow:0 0 0 1px var(--jnr-teal),   0 20px 60px rgba(0,217,192,0.1); }
.feature-card.active.c2 { border-color:var(--jnr-orange); box-shadow:0 0 0 1px var(--jnr-orange), 0 20px 60px rgba(255,107,53,0.1); }
.feature-card.active.c3 { border-color:var(--jnr-purple); box-shadow:0 0 0 1px var(--jnr-purple), 0 20px 60px rgba(168,85,247,0.1); }
.feature-card.active.c4 { border-color:var(--jnr-yellow); box-shadow:0 0 0 1px var(--jnr-yellow), 0 20px 60px rgba(255,225,53,0.1); }
.feature-num { font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:14px; }
.c1 .feature-num { color:var(--jnr-teal); }
.c2 .feature-num { color:var(--jnr-orange); }
.c3 .feature-num { color:var(--jnr-purple); }
.c4 .feature-num { color:var(--jnr-yellow); }
.feature-card h3 { font-size:26px; margin-bottom:12px; }
.feature-card p  { font-size:15px; color:var(--jnr-muted); line-height:1.65; }
.feature-tag {
    display:inline-block; margin-top:16px;
    font-size:12px; font-weight:600; padding:5px 12px; border-radius:100px;
}
.c1 .feature-tag { background:rgba(0,217,192,0.1);  color:var(--jnr-teal); }
.c2 .feature-tag { background:rgba(255,107,53,0.1); color:var(--jnr-orange); }
.c3 .feature-tag { background:rgba(168,85,247,0.1); color:var(--jnr-purple); }
.c4 .feature-tag { background:rgba(255,225,53,0.1); color:var(--jnr-yellow); }

/* ============================================================
   TRACKS SECTION
   ============================================================ */
.jnr-tracks-section {
    padding: 100px 0;
    background: var(--jnr-surface);
    border-top: 1px solid var(--jnr-border);
    border-bottom: 1px solid var(--jnr-border);
}
.jnr-tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}
.track-card {
    background: var(--jnr-bg);
    border: 1px solid var(--jnr-border);
    border-radius: var(--jnr-radius);
    padding: 48px 40px;
    display: flex; flex-direction: column; gap: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.track-card:hover { border-color: var(--jnr-purple); box-shadow: 0 20px 60px rgba(168,85,247,0.08); }
.track-explorer:hover { border-color: var(--jnr-purple); }
.track-creator:hover  { border-color: var(--jnr-teal); }

.track-badge {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.track-explorer .track-badge { background:rgba(168,85,247,0.12); color:var(--jnr-purple); }
.track-creator  .track-badge { background:rgba(0,217,192,0.12);  color:var(--jnr-teal); }

.track-icon { font-size: 40px; margin-bottom: 16px; }
.track-card h3 { font-size: 32px; margin-bottom: 16px; }
.track-card > p { font-size: 15px; color: var(--jnr-muted); line-height: 1.65; margin-bottom: 24px; }
.track-list { display:flex; flex-direction:column; gap:10px; margin-bottom:36px; }
.track-list li {
    font-size: 14px; color: var(--jnr-text); font-weight: 600;
    padding-left: 22px; position: relative;
}
.track-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--jnr-yellow); font-weight: 700;
}
.track-card .btn-primary { align-self: flex-start; margin-top: auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.jnr-testi-section {
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.testi-heading { font-size:clamp(28px,4vw,48px); margin-bottom:56px; }
.testi-heading em { font-style:normal; color:var(--jnr-yellow); }
.testi-track-wrap { overflow:hidden; cursor:grab; user-select:none; }
.testi-track-wrap:active { cursor:grabbing; }
.testi-track { display:flex; gap:24px; transition:transform 0.5s cubic-bezier(0.16,1,0.3,1); will-change:transform; }
.testi-card {
    flex: 0 0 380px;
    background: var(--jnr-surface);
    border: 1px solid var(--jnr-border);
    border-radius: 24px; padding: 36px 32px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card.is-active { border-color:rgba(255,225,53,0.3); box-shadow:0 20px 60px rgba(255,225,53,0.06); }
.testi-stars { color:var(--jnr-yellow); font-size:18px; margin-bottom:18px; letter-spacing:2px; }
.testi-quote { font-size:15px; line-height:1.7; color:var(--jnr-text); margin-bottom:24px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar { font-size:32px; }
.testi-name { font-size:14px; font-weight:700; }
.testi-role { font-size:12px; color:var(--jnr-muted); margin-top:2px; }
.testi-dots { display:flex; justify-content:center; gap:8px; margin-top:32px; }
.testi-dot {
    width:8px; height:8px; border-radius:50%;
    background:var(--jnr-border); border:none; cursor:pointer;
    transition:background 0.2s, transform 0.2s;
}
.testi-dot.active { background:var(--jnr-yellow); transform:scale(1.3); }
.testi-nav { display:flex; justify-content:center; gap:12px; margin-top:20px; }
.testi-arrow {
    width:42px; height:42px; border-radius:50%;
    background:var(--jnr-surface); border:1px solid var(--jnr-border);
    color:var(--jnr-text); font-size:18px;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition:border-color 0.2s, background 0.2s;
}
.testi-arrow:hover { border-color:var(--jnr-yellow); background:rgba(255,225,53,0.08); }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.jnr-pricing-section {
    padding: 100px 0;
    text-align: center;
}
.price-box {
    max-width: 560px; margin: 60px auto 0;
    background: var(--jnr-surface);
    border: 1px solid var(--jnr-border);
    border-radius: var(--jnr-radius);
    padding: 48px 44px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.founding-badge {
    display: inline-block;
    background: rgba(255,225,53,0.12);
    border: 1px solid rgba(255,225,53,0.3);
    color: var(--jnr-yellow);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 6px 18px; border-radius: 100px;
    margin-bottom: 28px;
}
.price-main { display:flex; align-items:flex-start; justify-content:center; gap:4px; margin-bottom:8px; }
.price-dollar { font-family:'Baloo 2',cursive; font-size:32px; font-weight:800; color:var(--jnr-yellow); margin-top:12px; }
.price-amount { font-family:'Baloo 2',cursive; font-size:88px; font-weight:800; color:var(--jnr-yellow); line-height:1; }
.price-was { font-size:14px; color:var(--jnr-muted); margin-bottom:32px; }
.price-features { text-align:left; display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.price-feat { display:flex; gap:14px; align-items:flex-start; font-size:14px; font-weight:600; }
.check {
    width:22px; height:22px; border-radius:50%; flex-shrink:0;
    background:rgba(255,225,53,0.15); color:var(--jnr-yellow);
    font-size:12px; font-weight:800;
    display:flex; align-items:center; justify-content:center;
    margin-top:1px;
}
.spots-left {
    font-size:13px; font-weight:700; color:var(--jnr-orange);
    margin-bottom:20px; letter-spacing:0.04em;
}
.price-footer-note { font-size:12px; color:var(--jnr-muted); margin-top:16px; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.jnr-blog-section {
    padding: 100px 0;
    background: var(--jnr-surface);
    border-top: 1px solid var(--jnr-border);
}
.jnr-blog-section h2 { text-align:left; }
.jnr-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.blog-card {
    background: var(--jnr-bg);
    border: 1px solid var(--jnr-border);
    border-radius: var(--jnr-radius);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(255,225,53,0.3); transform: translateY(-4px); }
.blog-card-img img { width:100%; aspect-ratio:3/2; object-fit:cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size:11px; color:var(--jnr-muted); margin-bottom:10px; letter-spacing:0.06em; text-transform:uppercase; }
.blog-card-title, .blog-card h2 { font-size:20px; line-height:1.3; margin-bottom:10px; }
.blog-card-title a:hover, .blog-card h2 a:hover { color:var(--jnr-yellow); }
.blog-card-excerpt, .blog-card p { font-size:14px; color:var(--jnr-muted); line-height:1.6; margin-bottom:16px; }
.blog-read-more { font-size:13px; font-weight:700; color:var(--jnr-yellow); }
.blog-read-more:hover { text-decoration:underline; }

/* ============================================================
   MAIN (pages & posts)
   ============================================================ */
.jnr-main { padding-top: var(--jnr-nav-h); min-height: 60vh; }
.jnr-page-header { padding: 60px 0 40px; text-align: center; }
.jnr-page-header .page-title { font-size: clamp(28px,4vw,56px); }

.jnr-single-post, .jnr-page {
    padding: 60px 0 80px;
}
.post-header { margin-bottom: 40px; }
.post-cats { font-size:11px; color:var(--jnr-muted); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:12px; }
.post-title { font-size: clamp(28px,4vw,52px); margin-bottom: 16px; }
.post-meta { font-size:13px; color:var(--jnr-muted); display:flex; gap:16px; }
.post-thumbnail, .page-thumbnail { border-radius:var(--jnr-radius); overflow:hidden; margin-bottom:40px; }
.post-thumbnail img, .page-thumbnail img { width:100%; }

.post-content, .page-content {
    font-size: 17px; line-height: 1.75; color: var(--jnr-text);
}
.post-content p, .page-content p { margin-bottom: 1.4em; }
.post-content h2, .page-content h2 { margin: 1.8em 0 0.6em; text-align:left; font-size: clamp(22px,3vw,36px); }
.post-content h3, .page-content h3 { margin: 1.4em 0 0.5em; font-size: clamp(18px,2.5vw,28px); }
.post-content a { color:var(--jnr-yellow); text-decoration:underline; }
.post-content ul, .page-content ul { padding-left: 24px; margin-bottom: 1.4em; }
.post-content li, .page-content li { margin-bottom: 0.5em; }
.post-content blockquote, .page-content blockquote {
    border-left: 3px solid var(--jnr-yellow);
    padding-left: 24px; margin: 2em 0;
    font-size: 19px; font-style: italic; color: var(--jnr-muted);
}
.post-content code { background:var(--jnr-surface2); padding:2px 6px; border-radius:4px; font-size:0.9em; }
.post-content pre { background:var(--jnr-surface2); padding:20px; border-radius:12px; overflow-x:auto; margin-bottom:1.4em; }

/* Post nav */
.post-navigation { display:flex; gap:20px; justify-content:space-between; margin-top:60px; padding-top:40px; border-top:1px solid var(--jnr-border); }
.nav-subtitle { font-size:11px; color:var(--jnr-muted); display:block; margin-bottom:4px; text-transform:uppercase; letter-spacing:0.1em; }
.nav-title { font-size:16px; font-weight:700; color:var(--jnr-text); }

/* Pagination */
.jnr-pagination { margin-top: 60px; display:flex; justify-content:center; }
.page-numbers { display:inline-flex; gap:8px; }
.page-numbers a, .page-numbers span {
    width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:14px; font-weight:700;
    border:1px solid var(--jnr-border); color:var(--jnr-muted);
    transition:border-color 0.2s, color 0.2s;
}
.page-numbers .current { background:var(--jnr-yellow); color:var(--jnr-bg); border-color:var(--jnr-yellow); }
.page-numbers a:hover { border-color:var(--jnr-yellow); color:var(--jnr-yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.jnr-footer {
    background: var(--jnr-surface);
    border-top: 1px solid var(--jnr-border);
    padding: 80px 0 0;
}
.jnr-footer-inner { max-width:var(--jnr-max-w); margin:0 auto; padding:0 24px; }
.jnr-footer-top { display:grid; grid-template-columns:1.5fr 2fr; gap:64px; padding-bottom:60px; }
.jnr-footer-brand {}
.jnr-footer-brand .jnr-logo-text { font-size:24px; display:block; margin-bottom:16px; }
.jnr-footer-tagline { font-size:14px; font-weight:600; color:var(--jnr-text); margin-bottom:10px; }
.jnr-footer-sub { font-size:13px; color:var(--jnr-muted); line-height:1.7; max-width:34ch; }
.jnr-footer-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.jnr-footer-col h4 { font-family:'Baloo 2',cursive; font-size:16px; font-weight:800; color:var(--jnr-text); margin-bottom:18px; }
.jnr-footer-col ul, .jnr-footer-col .widget { list-style:none; }
.jnr-footer-col li, .jnr-footer-col .widget li { margin-bottom:10px; }
.jnr-footer-col a { font-size:14px; color:var(--jnr-muted); transition:color 0.15s; }
.jnr-footer-col a:hover { color:var(--jnr-yellow); }
.footer-widget-title { font-family:'Baloo 2',cursive; font-size:16px; font-weight:800; margin-bottom:18px; }

.jnr-footer-bottom {
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
    border-top:1px solid var(--jnr-border);
    padding:24px 0;
    font-size:13px; color:var(--jnr-muted);
}
.jnr-footer-bottom a { color:var(--jnr-muted); }
.jnr-footer-bottom a:hover { color:var(--jnr-yellow); }
.jnr-footer-nav { display:flex; gap:20px; list-style:none; }

/* ============================================================
   WOOCOMMERCE
   ============================================================ */
.jnr-woo-wrap { padding-top: calc(var(--jnr-nav-h) + 40px); padding-bottom: 80px; }
.woocommerce-products-header h1 { font-family:'Baloo 2',cursive; font-size:clamp(28px,4vw,52px); margin-bottom:24px; }
.woocommerce ul.products li.product a img { border-radius:var(--jnr-radius-sm); }
.woocommerce ul.products li.product .price { color:var(--jnr-yellow); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--jnr-yellow); color: var(--jnr-bg);
    font-family:'Nunito',sans-serif; font-weight:700;
    border-radius:100px; border:none; padding:12px 28px;
    transition: background 0.15s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #ffd600; color: var(--jnr-bg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .jnr-hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px 80px;
        text-align: center;
    }
    .jnr-hero-left { align-items: center; }
    .jnr-hero h1, .hero-sub { text-align: center; }
    .hero-ctas, .hero-stats { justify-content: center; }
    .jnr-hero-right { height: 300px; width: 100%; max-width: 600px; margin: 0 auto; }
    .feat-card { display: none; }
    .char-img { height: 220px !important; }
    #slot-sboy .char-img, #slot-sgirl .char-img { height: 240px !important; }
    .scene-chip { display: none; }

    .jnr-stack-container { grid-template-columns: 1fr; }
    .jnr-stack-visual { position: static; margin-bottom: 40px; }
    .jnr-tracks-grid { grid-template-columns: 1fr; }
    .jnr-footer-top { grid-template-columns: 1fr; gap: 40px; }
    .jnr-blog-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .jnr-nav-menu { display: none; }
    .jnr-nav-cta { display: none; }
    .jnr-mobile-toggle { display: flex; }

    .jnr-hero-right { height: 200px; }
    #slot-jboy  { left: 0%;  }
    #slot-jgirl { left: 25%; }
    #slot-sboy  { left: 50%; }
    #slot-sgirl { left: 72%; }
    .char-img { height: 160px !important; }
    #slot-sboy .char-img, #slot-sgirl .char-img { height: 175px !important; }

    .testi-card { flex: 0 0 300px; padding: 28px 24px; }
    .jnr-footer-cols { grid-template-columns: repeat(2,1fr); }
    .jnr-blog-grid { grid-template-columns: 1fr; }
    .price-box { padding: 36px 28px; }
    .price-amount { font-size: 72px; }
    .jnr-tracks-grid { gap: 20px; }
    .track-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
    .jnr-footer-cols { grid-template-columns: 1fr; }
    .jnr-footer-bottom { flex-direction: column; text-align: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================================
   FRONT PAGE SPECIFIC — hide duplicate nav CTA
   The hero already has a prominent CTA so the nav one
   is hidden on the front page to prevent duplication.
   ============================================================ */
.jnr-home .jnr-nav-cta { display: none; }

/* Extra nav logo safety net targeting WP's Site Identity output */
.jnr-nav .site-logo img,
.jnr-nav .wp-block-site-logo img,
.jnr-nav img.custom-logo {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: 155px !important;
}

/* ============================================================
   WEEK CARDS — image-based program section
   ============================================================ */
.jnr-weeks-section {
    padding: 100px 0 80px;
}

.jnr-weeks-intro {
    text-align: center;
    margin-bottom: 64px;
}
.jnr-weeks-intro h2 { margin-bottom: 12px; }
.jnr-weeks-intro h2 em { font-style: normal; color: var(--jnr-yellow); }
.jnr-weeks-intro p {
    font-size: 17px; color: var(--jnr-muted);
    max-width: 50ch; margin: 0 auto;
}

.jnr-week-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Base card */
.week-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    border-radius: 24px;
    border: 2px solid transparent;
    background: #0d1117;
    overflow: hidden;
    min-height: 280px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.week-card:hover {
    transform: translateY(-4px);
}

/* Per-week border colors matching the mockups */
.week-card--teal   { border-color: #00d9c0; box-shadow: 0 0 40px rgba(0,217,192,0.12); }
.week-card--orange { border-color: #ff6b35; box-shadow: 0 0 40px rgba(255,107,53,0.12); }
.week-card--purple { border-color: #a855f7; box-shadow: 0 0 40px rgba(168,85,247,0.12); }
.week-card--yellow { border-color: #ffe135; box-shadow: 0 0 40px rgba(255,225,53,0.12); }

.week-card:hover.week-card--teal   { box-shadow: 0 8px 60px rgba(0,217,192,0.22); }
.week-card:hover.week-card--orange { box-shadow: 0 8px 60px rgba(255,107,53,0.22); }
.week-card:hover.week-card--purple { box-shadow: 0 8px 60px rgba(168,85,247,0.22); }
.week-card:hover.week-card--yellow { box-shadow: 0 8px 60px rgba(255,225,53,0.22); }

/* Content side */
.week-card__content {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.week-card__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.week-card--teal   .week-card__eyebrow { color: #00d9c0; }
.week-card--orange .week-card__eyebrow { color: #ff6b35; }
.week-card--purple .week-card__eyebrow { color: #a855f7; }
.week-card--yellow .week-card__eyebrow { color: #ffe135; }

.week-card__title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: left;
}

.week-card__body {
    font-size: 16px;
    line-height: 1.7;
    color: #8888a0;
    max-width: 52ch;
    margin: 0;
}

/* Week badge button */
.week-card__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px;
    cursor: default;
}
.week-card__btn--teal   { background: rgba(0,217,192,0.12);  color: #00d9c0; }
.week-card__btn--orange { background: rgba(255,107,53,0.15); color: #ff6b35; }
.week-card__btn--purple { background: rgba(168,85,247,0.15); color: #a855f7; }
.week-card__btn--yellow { background: rgba(255,225,53,0.12); color: #ffe135; }

/* Character image side */
.week-card__character {
    position: relative;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.week-card__character img {
    width: auto;
    height: 100%;
    max-height: 340px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* Responsive */
@media (max-width: 900px) {
    .week-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .week-card__content {
        padding: 36px 32px 24px;
        order: 2;
    }
    .week-card__character {
        order: 1;
        min-height: 200px;
        height: 200px;
    }
    .week-card__character img {
        max-height: 200px;
    }
    .week-card__title { font-size: 26px; }
}

@media (max-width: 480px) {
    .week-card__content { padding: 28px 24px 20px; }
    .week-card__body { font-size: 15px; }
    .week-card__character { min-height: 160px; height: 160px; }
    .week-card__character img { max-height: 160px; }
}

/* ============================================================
   PROGRAM GRID — image cards left, sticky phone right
   ============================================================ */
.jnr-program-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

/* Sticky phone column */
.jnr-program-grid .jnr-stack-visual {
    position: sticky;
    top: 110px;
    height: fit-content;
}

/* Week cards as scroll-activated items — reset opacity from feature-card base */
.jnr-week-cards .week-card {
    opacity: 0.4;
    transform: translateY(8px) scale(0.99);
    transition:
        opacity 0.45s cubic-bezier(0.16,1,0.3,1),
        transform 0.45s cubic-bezier(0.16,1,0.3,1),
        border-color 0.45s,
        box-shadow 0.45s;
    cursor: default;
    margin-bottom: 0; /* gap handles spacing */
}
.jnr-week-cards .week-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Glow intensifies when active */
.jnr-week-cards .week-card--teal.active   { box-shadow: 0 0 60px rgba(0,217,192,0.20); }
.jnr-week-cards .week-card--orange.active { box-shadow: 0 0 60px rgba(255,107,53,0.20); }
.jnr-week-cards .week-card--purple.active { box-shadow: 0 0 60px rgba(168,85,247,0.20); }
.jnr-week-cards .week-card--yellow.active { box-shadow: 0 0 60px rgba(255,225,53,0.20); }

/* Responsive: stack to single column */
@media (max-width: 1100px) {
    .jnr-program-grid {
        grid-template-columns: 1fr;
    }
    .jnr-program-grid .jnr-stack-visual {
        position: static;
        max-width: 540px;
        margin: 0 auto 48px;
        order: -1; /* phone appears above cards on mobile */
    }
}
