  :root {
    --bg:#1a1d21; --surface:#1f2328; --surface2:#272b31;
    --gold:#f6c177; --orange:#ff9800; --green:#5B8D57;
    --text:#fff; --text-muted:#9ca3af; --text-dim:#6b7280;
    --r-md:16px; --r-lg:24px;
    --ph-voice:#1e4f8c; --ph-convo:#059669; --ph-response:#d97706;
  }
  *{ box-sizing:border-box; -webkit-tap-highlight-color:transparent;
     -webkit-user-select:none; user-select:none; margin:0; padding:0; }
  body{
    background:linear-gradient(135deg,#1a1d21 0%,#272b31 50%,#1a1d21 100%);
    min-height:100dvh; font-family:system-ui,-apple-system,sans-serif; color:var(--text);
    display:flex; flex-direction:column; align-items:center;
    padding:28px 16px 28px; overflow-x:hidden;
  }

  /* ── HEADER ── */
  .suite-header{
    display:flex; flex-direction:column; align-items:center;
    width:100%; max-width:780px;
    margin-bottom:16px; animation:fadeSlideIn .45s ease-out both;
  }
  .suite-logo{
    height:66px; border-radius:14px; margin-bottom:10px;
    filter:drop-shadow(0 4px 18px rgba(246,193,119,.28));
  }
  .suite-title{
    font-size:clamp(1.4rem,4.5vw,2.2rem); font-weight:900; letter-spacing:-.5px;
    background:linear-gradient(135deg,#f6c177 0%,#ff9800 60%,#f6c177 100%);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    line-height:1.1; text-align:center; margin-bottom:4px;
  }
  .suite-subtitle{ font-size:.85rem; color:var(--text-muted); font-style:italic; text-align:center; margin-bottom:0; }

  /* ── FOOTER CONTROL STRIP ──
     In-flow strip directly below the card, same max-width as the card.
     Holds Backup, Restore (left) and Intro, Voice (right) on one line.      */
  .suite-footer{
    width:100%; max-width:780px;
    height:44px;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 4px;
    margin-top:10px;
  }
  /* Left half: backup status dots + Backup + Restore */
  .suite-footer-left {
    display:flex; align-items:center; gap:8px;
    flex:1; min-width:0; overflow:hidden;
  }
  /* Hairline separator between status text and action buttons */
  .suite-footer-divider{
    width:1px; height:20px; background:rgba(255,255,255,.12); flex-shrink:0;
  }
  /* Right half: Intro + Voice — pinned to right edge */
  .suite-footer-right{ display:flex; align-items:center; gap:8px; flex-shrink:0; }

  @keyframes fadeSlideIn{ from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
  @keyframes cardFadeIn { from{opacity:0;transform:scale(.97) translateY(14px)} to{opacity:1;transform:none} }
  @keyframes tileIn     { from{opacity:0;transform:translateY(10px) scale(.96)} to{opacity:1;transform:none} }

  /* ── CARD ── */
  .suite-card{
    background:var(--surface); border:2px solid var(--orange); border-radius:var(--r-lg);
    padding:clamp(18px,4vw,36px); width:100%; max-width:780px;
    box-shadow:0 30px 80px rgba(0,0,0,.7),0 0 60px rgba(255,152,0,.1),
               inset 0 1px 0 rgba(246,193,119,.08);
    animation:cardFadeIn .4s ease-out both;
  }

  /* ── LAYOUT ── */
  .grid-layout-wrap{ display:flex; flex-direction:column; gap:0; }
  .phase-section{
    display:grid; grid-template-columns:18px 1fr;
    gap:0 10px; align-items:stretch; margin-bottom:10px;
  }
  .phase-section:last-child{ margin-bottom:0; }

  /* ── PHASE STRIP ── */
  .phase-banner{ display:flex; align-items:center; justify-content:center; border-radius:8px; }
  .phase-strip { display:flex; align-items:center; justify-content:center; border-radius:8px; width:100%; }
  .phase-strip.voice{
    background:linear-gradient(180deg,rgba(30,79,140,.22),rgba(30,79,140,.08));
    border-left:3px solid var(--ph-voice);
    border-top:1px solid rgba(30,79,140,.3); border-bottom:1px solid rgba(30,79,140,.15);
  }
  .phase-strip.convo{
    background:linear-gradient(180deg,rgba(5,150,105,.22),rgba(5,150,105,.08));
    border-left:3px solid var(--ph-convo);
    border-top:1px solid rgba(5,150,105,.3); border-bottom:1px solid rgba(5,150,105,.15);
  }
  .phase-strip.response{
    background:linear-gradient(180deg,rgba(217,119,6,.22),rgba(217,119,6,.08));
    border-left:3px solid var(--ph-response);
    border-top:1px solid rgba(217,119,6,.3); border-bottom:1px solid rgba(217,119,6,.15);
  }
  .phase-strip-label{
    writing-mode:vertical-rl; text-orientation:mixed; transform:rotate(180deg);
    font-size:7.5px; font-weight:800; letter-spacing:.13em; white-space:nowrap;
    padding:10px 0; user-select:none;
  }
  .phase-strip.voice    .phase-strip-label{ color:rgba(147,187,255,.8); }
  .phase-strip.convo    .phase-strip-label{ color:rgba(110,231,183,.8); }
  .phase-strip.response .phase-strip-label{ color:rgba(252,211,77,.8);  }

  /* ── TILE GRID ── */
  .grid-clip{
    position:relative;
    border-radius:calc(var(--r-md) + 2px);
  }
  .app-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
  }

  /* ── TILE ── */
  .app-tile{
    background:linear-gradient(135deg,rgba(91,141,87,.13),rgba(91,141,87,.05));
    border:2px solid rgba(91,141,87,.28); border-left:3px solid transparent;
    border-radius:var(--r-md); padding:16px 10px 12px;
    cursor:pointer; text-decoration:none;
    display:flex; flex-direction:column; align-items:center;
    position:relative;
    overflow:hidden;
    z-index:1;
    transition:transform .18s, box-shadow .18s, border-color .18s, background .18s;
    animation:tileIn .4s ease-out both;
  }
  .app-tile.ph-voice   { border-left-color:var(--ph-voice);    }
  .app-tile.ph-convo   { border-left-color:var(--ph-convo);    }
  .app-tile.ph-response{ border-left-color:var(--ph-response); }

  /* shimmer */
  .app-tile::before{
    content:''; position:absolute; inset:0; border-radius:inherit;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent);
    transform:translateX(-100%); transition:transform .55s; pointer-events:none; z-index:0;
  }
  .app-tile:hover::before{ transform:translateX(100%); }
  .app-tile:hover{
    background:linear-gradient(135deg,rgba(91,141,87,.24),rgba(91,141,87,.12));
    border-color:var(--green); transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(91,141,87,.28);
  }
  .app-tile.ph-voice:hover   { border-color:rgba(100,160,255,.7); box-shadow:0 8px 24px rgba(30,79,140,.25); }
  .app-tile.ph-convo:hover   { border-color:rgba(52,211,153,.7);  box-shadow:0 8px 24px rgba(5,150,105,.25); }
  .app-tile.ph-response:hover{ border-color:rgba(251,191,36,.7);  box-shadow:0 8px 24px rgba(217,119,6,.25); }
  .app-tile:active{ transform:translateY(-1px) scale(.98); }

  /* tile content dims when pop open */
  .tile-icon,.tile-name,.tile-sub,.cap-bars{
    position:relative; z-index:2; transition:opacity .2s;
  }
  .tile-icon{ font-size:28px; line-height:1; margin-bottom:8px;
    filter:drop-shadow(0 2px 8px rgba(246,193,119,.25)); }
  .tile-name{ font-size:clamp(11px,2vw,13.5px); font-weight:700; color:var(--gold);
    text-align:center; line-height:1.25; margin-bottom:3px; }
  .tile-sub{ font-size:clamp(8.5px,1.6vw,10.5px); color:var(--text-muted);
    text-align:center; line-height:1.3; font-style:italic; margin-bottom:8px; }
  .cap-bars{ width:100%; display:flex; flex-direction:column; gap:3px;
    border-top:1px solid rgba(255,255,255,.07); padding-top:7px; }
  .cap-track{ height:4px; background:rgba(255,255,255,.07);
    border-radius:2px; overflow:hidden; position:relative; }
  .cap-fill{ height:100%; border-radius:2px; min-width:2px; position:absolute; left:0; top:0; }
  .cap-fill.dex  { background:linear-gradient(90deg,#60a5fa,#3b82f6); }
  .cap-fill.vocab{ background:linear-gradient(90deg,#f6c177,#ff9800); }
  .cap-fill.cust { background:linear-gradient(90deg,#86efac,#5B8D57); }

  /* phone badge */
  .phone-badge{
    position:absolute; top:6px; right:6px; font-size:13px;
    transform:rotate(35deg); opacity:0.75; line-height:1;
    pointer-events:none; user-select:none;
  }

  /* ── LEGEND ── */
  .suite-legend{
    width:100%; max-width:780px; display:flex; gap:14px; flex-wrap:wrap;
    justify-content:center; margin-top:14px;
    animation:fadeSlideIn .5s .35s ease-out both;
  }
  .leg-group{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:center; }
  .leg-sep  { width:1px; height:14px; background:rgba(255,255,255,.12); }
  .leg-item { display:flex; align-items:center; gap:5px; font-size:10px; color:rgba(255,255,255,.5); }
  .leg-pip  { width:18px; height:4px; border-radius:2px; flex-shrink:0; }
  .leg-pip.dex  { background:linear-gradient(90deg,#60a5fa,#3b82f6); }
  .leg-pip.vocab{ background:linear-gradient(90deg,#f6c177,#ff9800); }
  .leg-pip.cust { background:linear-gradient(90deg,#86efac,#5B8D57); }
  .leg-lbl{ display:none; }

  /* ═══════════════════════════════════════════════════
     INTRO MODAL
     Cinematic welcome overlay with aurora background.
     ═══════════════════════════════════════════════════ */

  /* ── Keyframes ────────────────────────────────────── */
  @keyframes ji-overlay-in   { from{opacity:0} to{opacity:1} }
  @keyframes ji-card-in      { from{opacity:0;transform:scale(.88) translateY(28px)} to{opacity:1;transform:none} }
  @keyframes ji-aurora-drift {
    0%   { transform:translate(-10%,-10%) rotate(0deg)   scale(1);   }
    33%  { transform:translate(6%,4%)    rotate(22deg)   scale(1.12);}
    66%  { transform:translate(-4%,8%)   rotate(-14deg)  scale(0.95);}
    100% { transform:translate(-10%,-10%) rotate(0deg)   scale(1);   }
  }
  @keyframes ji-logo-pulse  { 0%,100%{box-shadow:0 0 0 0 rgba(246,193,119,.45)} 50%{box-shadow:0 0 0 18px rgba(246,193,119,0)} }
  @keyframes ji-btn-pulse   { 0%,100%{box-shadow:0 0 0 0 rgba(255,152,0,.5)}    50%{box-shadow:0 0 0 14px rgba(255,152,0,0)} }
  @keyframes ji-text-enter  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
  @keyframes ji-text-exit   { from{opacity:1;transform:none} to{opacity:0;transform:translateY(-10px)} }
  @keyframes ji-dot-pop     { 0%{transform:scale(1)} 50%{transform:scale(1.5)} 100%{transform:scale(1)} }
  @keyframes ji-finish      { 0%{transform:scale(1)} 60%{transform:scale(1.025)} 100%{transform:scale(1)} }
  @keyframes ji-ring-spin   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  @keyframes ji-closing-out { from{opacity:1;transform:scale(1)} to{opacity:0;transform:scale(.94) translateY(-16px)} }

  /* ── Overlay ──────────────────────────────────────── */
  #jhacal-intro-overlay {
    position:fixed; inset:0; z-index:9000;
    display:flex; align-items:center; justify-content:center;
    padding:20px;
    background:rgba(12,14,17,.72);
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    opacity:0; transition:opacity .42s ease;
    -webkit-user-select:none; user-select:none;
  }
  #jhacal-intro-overlay.ji-visible { opacity:1; }
  #jhacal-intro-overlay.ji-closing {
    pointer-events:none;
  }
  #jhacal-intro-overlay[hidden] { display:none; }

  /* ── Aurora background ────────────────────────────── */
  .ji-aurora {
    position:absolute; inset:-40%; z-index:0; pointer-events:none;
    background:
      radial-gradient(ellipse 80% 60% at 30% 40%, rgba(246,193,119,.11) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 75% 60%, rgba(5,150,105,.09)   0%, transparent 65%),
      radial-gradient(ellipse 70% 50% at 55% 25%, rgba(30,79,140,.12)   0%, transparent 65%);
    animation:ji-aurora-drift 18s ease-in-out infinite;
    will-change:transform;
  }

  /* ── Card ─────────────────────────────────────────── */
  .ji-card {
    position:relative; z-index:1;
    background:linear-gradient(160deg,rgba(31,35,40,.97) 0%,rgba(22,25,30,.99) 100%);
    border:1px solid rgba(246,193,119,.22);
    border-radius:28px;
    padding:clamp(32px,6vw,52px) clamp(28px,6vw,56px) 28px;
    width:100%; max-width:520px;
    box-shadow:
      0 40px 100px rgba(0,0,0,.8),
      0 0 80px rgba(246,193,119,.07),
      inset 0 1px 0 rgba(246,193,119,.12),
      inset 0 -1px 0 rgba(255,255,255,.03);
    display:flex; flex-direction:column; align-items:center; gap:0;
    outline:none;
    animation:ji-card-in .55s cubic-bezier(.16,1,.3,1) both;
  }
  .ji-card.ji-card-finish { animation:ji-finish .24s ease both; }
  .ji-closing .ji-card    { animation:ji-closing-out .4s cubic-bezier(.55,.05,.67,.19) both; }

  /* ── Logo ring + name ─────────────────────────────── */
  .ji-logo-wrap {
    display:flex; flex-direction:column; align-items:center;
    margin-bottom:32px;
  }
  .ji-logo-ring {
    width:72px; height:72px; border-radius:50%;
    border:2px solid rgba(246,193,119,.25);
    background:radial-gradient(circle at 35% 35%, rgba(246,193,119,.18), rgba(246,193,119,.04));
    box-shadow:0 0 0 0 rgba(246,193,119,.45);
    animation:ji-logo-pulse 3s ease-in-out infinite;
    margin-bottom:14px;
    /* Inner caret icon — purely CSS */
    display:flex; align-items:center; justify-content:center;
    font-size:28px; color:rgba(246,193,119,.8);
    position:relative;
  }
  .ji-logo-ring::after {
    content:'';
    position:absolute; inset:-6px; border-radius:50%;
    border:1px solid rgba(246,193,119,.12);
    border-top-color:rgba(246,193,119,.45);
    animation:ji-ring-spin 6s linear infinite;
  }
  .ji-suite-name {
    font-size:clamp(1rem,4vw,1.35rem); font-weight:900; letter-spacing:-.3px;
    text-align:center; line-height:1.2;
    background:linear-gradient(135deg,#f6c177 0%,#ff9800 55%,#f6c177 100%);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  }
  /* Explicit rgba fill instead of opacity — avoids compositing conflict:
     opacity<1 on a child creates its own layer which severs the parent's
     background-clip:text gradient, rendering the span invisible. */
  .ji-suite-name span {
    font-weight:400; font-size:.82em;
    -webkit-text-fill-color:rgba(246,193,119,.72);
    background:none; background-clip:unset; -webkit-background-clip:unset;
  }

  /* ── Logo image inside ring ───────────────────────── */
  .ji-logo-img {
    width:52px; height:52px;
    border-radius:50%;
    object-fit:contain;
    /* Slight warm tint to match the gold palette */
    filter:drop-shadow(0 2px 8px rgba(246,193,119,.35));
    position:relative; z-index:1;
  }

  /* ── Motto ────────────────────────────────────────── */
  .ji-motto {
    margin-top:9px;
    font-size:clamp(.68rem,2vw,.8rem);
    font-style:italic;
    letter-spacing:.06em;
    color:rgba(246,193,119,.55);
    text-align:center;
    line-height:1.4;
    display:flex; align-items:center; gap:7px;
  }
  .ji-motto-dash {
    color:rgba(246,193,119,.25);
    font-style:normal;
    font-size:.65em;
    letter-spacing:0;
  }

  /* ── Stage ────────────────────────────────────────── */
  .ji-stage {
    min-height:130px; width:100%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; margin-bottom:28px;
    transition:opacity .28s ease;
  }
  .ji-stage.ji-exit  { animation:ji-text-exit  .28s ease both; }
  .ji-stage.ji-enter { animation:ji-text-enter .48s cubic-bezier(.16,1,.3,1) both; }

  .ji-headline {
    font-size:clamp(1.45rem,5vw,2rem); font-weight:900; letter-spacing:-.4px;
    line-height:1.15; margin-bottom:14px; color:#fff;
    text-shadow:0 2px 20px rgba(246,193,119,.2);
  }
  .ji-body {
    font-size:clamp(.88rem,2.5vw,1.05rem); color:rgba(255,255,255,.7);
    line-height:1.65; font-weight:400; max-width:380px;
  }

  /* ── Dots ─────────────────────────────────────────── */
  .ji-dots {
    display:flex; gap:10px; align-items:center; margin-bottom:18px;
  }
  .ji-dot {
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,.18); border:none; cursor:pointer;
    padding:0; transition:background .3s, transform .2s, width .3s;
  }
  .ji-dot.active {
    background:linear-gradient(135deg,#f6c177,#ff9800);
    width:24px; border-radius:4px;
    animation:ji-dot-pop .3s ease both;
  }
  .ji-dot:focus-visible { outline:2px solid rgba(246,193,119,.7); outline-offset:3px; }

  /* ── Progress bar ─────────────────────────────────── */
  .ji-progress-bar {
    width:100%; height:2px; background:rgba(255,255,255,.07);
    border-radius:1px; overflow:hidden; margin-bottom:28px;
  }
  .ji-progress-fill {
    height:100%; width:0;
    background:linear-gradient(90deg,#f6c177,#ff9800,#f6c177);
    border-radius:1px;
    transition:width .04s linear;
  }

  /* ── Action buttons ───────────────────────────────── */
  .ji-actions {
    display:flex; align-items:center; justify-content:space-between;
    gap:14px; width:100%; margin-bottom:16px;
  }
  .ji-btn-skip {
    background:none; border:none; cursor:pointer; padding:10px 14px;
    font-size:.82rem; color:rgba(255,255,255,.38); letter-spacing:.04em;
    border-radius:10px; transition:color .2s, background .2s;
    -webkit-user-select:none; user-select:none;
  }
  .ji-btn-skip:hover { color:rgba(255,255,255,.65); background:rgba(255,255,255,.06); }
  .ji-btn-skip:focus-visible { outline:2px solid rgba(246,193,119,.5); outline-offset:2px; }

  .ji-btn-begin {
    flex:1;
    background:linear-gradient(135deg,#f6c177 0%,#ff9800 60%,#f6a500 100%);
    border:none; border-radius:14px; padding:14px 24px;
    font-size:clamp(.9rem,2.5vw,1rem); font-weight:800; letter-spacing:.02em;
    color:#1a1200; cursor:pointer;
    box-shadow:0 8px 24px rgba(255,152,0,.35), inset 0 1px 0 rgba(255,255,255,.2);
    transition:transform .15s, box-shadow .15s, filter .15s;
    -webkit-user-select:none; user-select:none;
  }
  .ji-btn-begin:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(255,152,0,.45), inset 0 1px 0 rgba(255,255,255,.25);
    filter:brightness(1.06);
  }
  .ji-btn-begin:active { transform:translateY(0) scale(.98); }
  .ji-btn-begin.ji-pulse { animation:ji-btn-pulse 1.8s ease-in-out infinite; }
  .ji-btn-begin:focus-visible { outline:2px solid rgba(246,193,119,.8); outline-offset:3px; }

  /* ── Splash action buttons (first-launch "Play / Launch" state) ─── */
  .ji-actions-splash {
    display:flex; flex-direction:column; align-items:center;
    gap:10px; width:100%; margin-bottom:16px;
  }
  .ji-btn-play {
    width:100%;
    background:linear-gradient(135deg,#f6c177 0%,#ff9800 60%,#f6a500 100%);
    border:none; border-radius:14px; padding:14px 24px;
    font-size:clamp(.9rem,2.5vw,1.05rem); font-weight:800; letter-spacing:.02em;
    color:#1a1200; cursor:pointer;
    box-shadow:0 8px 24px rgba(255,152,0,.35), inset 0 1px 0 rgba(255,255,255,.2);
    transition:transform .15s, box-shadow .15s, filter .15s;
    -webkit-user-select:none; user-select:none; touch-action:manipulation;
  }
  .ji-btn-play:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(255,152,0,.45), inset 0 1px 0 rgba(255,255,255,.25);
    filter:brightness(1.06);
  }
  .ji-btn-play:active { transform:translateY(0) scale(.98); }
  .ji-btn-play:focus-visible { outline:2px solid rgba(246,193,119,.8); outline-offset:3px; }
  .ji-btn-launch {
    width:100%;
    background:none; border:1px solid rgba(255,255,255,.18); cursor:pointer;
    padding:12px 24px; font-size:.9rem; font-weight:600; letter-spacing:.03em;
    color:rgba(255,255,255,.58); border-radius:12px;
    transition:color .2s, background .2s, border-color .2s;
    -webkit-user-select:none; user-select:none; touch-action:manipulation;
  }
  .ji-btn-launch:hover { color:#fff; background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.38); }
  .ji-btn-launch:active { transform:scale(.98); }
  .ji-btn-launch:focus-visible { outline:2px solid rgba(246,193,119,.5); outline-offset:3px; }

  /* ── Replay hint ──────────────────────────────────── */
  .ji-replay-hint {
    font-size:.75rem; color:rgba(255,255,255,.28); text-align:center;
    letter-spacing:.03em; margin-top:2px;
  }

  /* ── Replay header button ─────────────────────────── */
  .ji-replay-btn {
    background:rgba(246,193,119,.08); border:1px solid rgba(246,193,119,.2);
    border-radius:20px; padding:8px 16px;
    font-size:.72rem; font-weight:700; letter-spacing:.07em;
    color:rgba(246,193,119,.65); cursor:pointer;
    transition:background .2s, color .2s, border-color .2s;
    -webkit-user-select:none; user-select:none;
  }
  .ji-replay-btn:hover {
    background:rgba(246,193,119,.15); color:rgba(246,193,119,.9);
    border-color:rgba(246,193,119,.4);
  }
  .ji-replay-btn:focus-visible { outline:2px solid rgba(246,193,119,.6); outline-offset:3px; }

  /* ── Responsive ───────────────────────────────────── */
  @media (max-height: 600px) {
    .ji-card { padding:22px 24px 18px; gap:0; }
    .ji-logo-wrap { margin-bottom:16px; }
    .ji-logo-ring { width:48px; height:48px; }
    .ji-logo-img { width:36px; height:36px; }
    .ji-motto { font-size:.65rem; margin-top:6px; }
    .ji-stage { min-height:90px; margin-bottom:16px; }
    .ji-headline { font-size:1.25rem; margin-bottom:8px; }
    .ji-body { font-size:.82rem; }
    .ji-dots { margin-bottom:12px; }
    .ji-progress-bar { margin-bottom:16px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .ji-aurora { animation:none; }
    .ji-logo-ring { animation:none; }
    .ji-logo-ring::after { animation:none; }
    .ji-btn-begin { animation:none !important; }
    .ji-card { animation:none; opacity:1; transform:none; }
    .ji-stage.ji-exit, .ji-stage.ji-enter { animation:none; }
  }
