:root {
  color-scheme: light;
  --jg-navy: #00175A;
  --jg-blue: #006FCF;
  --jg-blue-hover: #005BB5;
  --jg-gold: #C49A3C;
  --jg-gold-soft: rgba(196, 154, 60, 0.22);
  --jg-brown: #5C3317;
  --jg-bg: #F5F7FA;
  --jg-card: #FFFFFF;
  --jg-border: #C8C8C8;
  --jg-muted: #5A6478;
  --jg-available: #00857C;
  --jg-available-soft: rgba(0, 133, 124, 0.14);
  --jg-available-border: rgba(0, 133, 124, 0.45);
  --jg-na: #E8E8E8;
  --jg-na-text: #7A7A7A;
  --jg-booked-stripe-a: rgba(196, 154, 60, 0.38);
  --jg-booked-stripe-b: rgba(196, 154, 60, 0.14);
  --jg-shadow: 0 2px 12px rgba(0, 23, 90, 0.08);
  --jg-radius: 12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body.jg-page {
  margin: 0;
  min-height: 100dvh;
  background:
    linear-gradient(165deg, rgba(196, 154, 60, 0.08) 0%, transparent 40%),
    var(--jg-bg);
  color: var(--jg-navy);
  line-height: 1.45;
}

body.jg-page::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--jg-brown), var(--jg-gold), var(--jg-brown));
}

.jg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jg-shell {
  max-width: 920px;
  margin: 0 auto;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.jg-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.jg-brand-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jg-brown);
  background: var(--jg-gold-soft);
  border: 1px solid rgba(196, 154, 60, 0.35);
  padding: 3px 8px;
  border-radius: 4px;
}

.jg-topbar h1 {
  margin: 4px 0 0;
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 700;
}

.jg-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.jg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--jg-border);
  background: var(--jg-card);
  color: var(--jg-navy);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.jg-btn:hover { background: #EEF2F7; }
.jg-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.jg-btn--primary {
  background: var(--jg-blue);
  border-color: var(--jg-blue);
  color: #fff;
}
.jg-btn--primary:hover { background: var(--jg-blue-hover); border-color: var(--jg-blue-hover); }
.jg-btn--gold {
  background: var(--jg-brown);
  border-color: var(--jg-brown);
  color: #fff;
}
.jg-btn--gold:hover { filter: brightness(1.08); }

.jg-voice-toggle[aria-pressed="true"] {
  border-color: var(--jg-available);
  background: var(--jg-available-soft);
  color: #006B63;
}

.jg-music-toggle {
  font-size: 0.8rem;
  padding: 6px 10px;
}
.jg-music-toggle[aria-pressed="true"] {
  border-color: var(--jg-gold);
  background: var(--jg-gold-soft);
  color: var(--jg-brown);
}

.jg-stage {
  flex: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .jg-stage { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
}

.jg-slide-card {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: var(--jg-radius);
  padding: 18px;
  box-shadow: var(--jg-shadow);
}
.jg-slide-card.jg-anim-in {
  animation: jgFadeIn 0.35s ease;
}
@keyframes jgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.jg-mock-label {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jg-muted);
}

.jg-mock-host {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jg-mock-welcome {
  text-align: center;
  padding: 12px;
}
.jg-mock-welcome__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 8px;
}
.jg-mock-welcome p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--jg-muted);
}

.jg-mini-cal {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.jg-mini-cal__head {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--jg-navy);
}
.jg-mini-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 3px;
  text-align: center;
  font-size: 0.55rem;
  color: var(--jg-muted);
  font-weight: 600;
}
.jg-mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.jg-mock-day {
  aspect-ratio: 1;
  min-height: 28px;
  border-radius: 5px;
  border: 1px solid var(--jg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.jg-mock-day--na { background: var(--jg-na); color: var(--jg-na-text); }
.jg-mock-day--available {
  background: var(--jg-available-soft);
  border-color: var(--jg-available-border);
  color: var(--jg-navy);
  box-shadow: 0 0 0 2px rgba(0, 133, 124, 0.25);
}
.jg-mock-day--booked {
  background: repeating-linear-gradient(
    -45deg,
    var(--jg-booked-stripe-a),
    var(--jg-booked-stripe-a) 3px,
    var(--jg-booked-stripe-b) 3px,
    var(--jg-booked-stripe-b) 6px
  );
  border-color: rgba(196, 154, 60, 0.45);
  color: #8B6914;
}
.jg-mock-day--outside { opacity: 0.35; }
.jg-mock-day--pulse { animation: jgPulse 1.4s ease infinite; }
@keyframes jgPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 133, 124, 0.35); }
  50% { box-shadow: 0 0 0 4px rgba(0, 133, 124, 0.15); }
}

.jg-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
}
.jg-steps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.jg-steps__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--jg-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jg-cta-mock {
  text-align: center;
}
.jg-cta-mock a {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--jg-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.jg-content h2 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  color: var(--jg-navy);
}
.jg-slide-tag {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jg-brown);
}
.jg-bullets {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}
.jg-bullets li { margin-bottom: 8px; font-size: 0.92rem; }

.jg-narration {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(0, 23, 90, 0.04);
  border-left: 3px solid var(--jg-gold);
  border-radius: 0 8px 8px 0;
}
.jg-narration-label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jg-muted);
}
.jg-narration-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--jg-muted);
  font-style: italic;
}

.jg-cta-row { margin-top: 16px; }
.jg-cta-row[hidden] { display: none; }

.jg-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--jg-border);
}
.jg-progress-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--jg-muted);
}
.jg-autoplay { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.jg-progress-bar {
  height: 5px;
  background: #E2E6ED;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}
.jg-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--jg-blue), var(--jg-gold));
  width: 0;
  transition: width 0.3s ease;
}
.jg-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.jg-nav-group { display: flex; gap: 8px; flex-wrap: wrap; }

.jg-slide-jump select {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--jg-border);
  font: inherit;
  font-size: 0.8rem;
  max-width: 11rem;
}

/* ARTIC card-reader guide mocks */
body.jg-page--artic {
  --jg-artic-brown: #351C15;
  --jg-artic-gold: #FFB500;
}
body.jg-page--artic::before {
  background: linear-gradient(90deg, var(--jg-artic-brown), var(--jg-artic-gold), var(--jg-artic-brown));
}
.jg-mock-panel {
  width: 100%;
  max-width: 300px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--jg-border);
  background: #FAFAFA;
  text-align: left;
}
.jg-mock-panel__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--jg-artic-brown);
}
.jg-mock-panel p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  color: var(--jg-muted);
}
.jg-mock-btn-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}
.jg-mock-btn {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--jg-border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--jg-navy);
}
.jg-mock-btn--primary {
  background: var(--jg-artic-brown);
  border-color: var(--jg-artic-brown);
  color: #fff;
}
.jg-mock-btn--pulse { animation: jgArticPulse 1.4s ease infinite; }
@keyframes jgArticPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 28, 21, 0.35); }
  50% { box-shadow: 0 0 0 4px rgba(53, 28, 21, 0.12); }
}
.jg-mock-hardware {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.jg-mock-phone {
  width: 56px;
  height: 96px;
  border-radius: 10px;
  border: 3px solid #333;
  background: linear-gradient(180deg, #444, #222);
  position: relative;
}
.jg-mock-phone::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: #666;
}
.jg-mock-cable {
  width: 36px;
  height: 4px;
  background: #888;
  border-radius: 2px;
}
.jg-mock-reader {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  border: 2px solid var(--jg-artic-brown);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--jg-artic-brown);
  text-align: center;
  line-height: 1.2;
}
.jg-mock-card {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: linear-gradient(135deg, #f5e6c8, #e8d4a8);
  margin-top: 6px;
}
.jg-mock-ifgaz {
  text-align: center;
  padding: 8px;
}
.jg-mock-ifgaz__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--jg-artic-brown);
  letter-spacing: 0.04em;
}
.jg-mock-ifgaz p {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--jg-muted);
}
.jg-mock-sync-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.78rem;
}
.jg-mock-sync-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.jg-mock-sync-list li::before {
  content: "✓";
  color: var(--jg-available);
  font-weight: 700;
}

/* Full tour — progress dots & demo badge */
.jg-progress-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 10px;
}
.jg-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #C8C8C8;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.jg-dot:hover { transform: scale(1.2); }
.jg-dot--active {
  background: var(--jg-artic-brown, #351C15);
  transform: scale(1.25);
}
.jg-demo-pill {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jg-artic-brown, #351C15);
  background: rgba(255, 181, 0, 0.25);
  border: 1px solid rgba(255, 181, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
}
.jg-mock-demo-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--jg-artic-brown);
  background: rgba(255, 181, 0, 0.2);
  border: 1px dashed rgba(53, 28, 21, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
}
.jg-mock-demo-tag {
  font-size: 0.6rem;
  font-weight: 700;
  color: #8B6914;
  background: rgba(255, 181, 0, 0.3);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}
.jg-mock-demo-note {
  margin: 8px 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8B6914;
  text-align: center;
}
.jg-mock-caption {
  margin: 8px 0 0;
  font-size: 0.72rem;
  color: var(--jg-muted);
  text-align: center;
}
.jg-mock-caption a { color: var(--jg-blue); }

/* Install split */
.jg-mock-install-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}
.jg-mock-install-col {
  padding: 10px;
  border: 1px solid var(--jg-border);
  border-radius: 8px;
  background: #FAFAFA;
}
.jg-steps--compact li { margin-bottom: 6px; font-size: 0.72rem; }
.jg-steps--compact .jg-steps__num { width: 18px; height: 18px; font-size: 0.6rem; }

/* Sign-in */
.jg-mock-signin .jg-mock-field {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 0.75rem;
}
.jg-mock-signin .jg-mock-field span { color: var(--jg-muted); }

/* Profile */
.jg-mock-profile { text-align: center; }
.jg-mock-avatar {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--jg-artic-brown);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jg-mock-profile__name {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.9rem;
}
.jg-mock-profile__meta {
  margin: 0 0 10px;
  font-size: 0.72rem;
  color: var(--jg-muted);
}
.jg-mock-docs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--jg-available);
}

/* Check-in */
.jg-mock-checkin { text-align: center; }
.jg-mock-site-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--jg-navy);
}
.jg-mock-site-meta {
  margin: 0 0 10px;
  font-size: 0.75rem;
  color: var(--jg-muted);
}
.jg-mock-gps {
  margin: 8px 0 0;
  font-size: 0.72rem;
  color: var(--jg-available);
}

/* Shift rows */
.jg-mock-shift-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid #EEE;
}
.jg-mock-shift-row span { color: var(--jg-muted); }
.jg-mock-muted { color: var(--jg-muted) !important; font-weight: 500 !important; }

/* Pre-drive checklist */
.jg-mock-checklist {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 0.75rem;
}
.jg-mock-checklist li {
  padding: 4px 0 4px 20px;
  position: relative;
}
.jg-mock-checklist__done::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--jg-available);
  font-weight: 700;
}
.jg-mock-checklist__pending::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--jg-muted);
}

/* Weekly log bars */
.jg-mock-week { width: 100%; max-width: 320px; }
.jg-mock-week__title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}
.jg-mock-week__days { display: flex; flex-direction: column; gap: 6px; }
.jg-mock-weekday {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
}
.jg-mock-weekday > span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--jg-muted);
}
.jg-mock-bar {
  display: flex;
  height: 14px;
  border-radius: 4px;
  overflow: hidden;
  background: #E8E8E8;
  border: 1px solid var(--jg-border);
}
.jg-seg { display: block; height: 100%; min-width: 2px; }
.jg-seg--drive { background: var(--jg-artic-brown); }
.jg-seg--work { background: var(--jg-artic-gold); }
.jg-seg--rest { background: var(--jg-available); }
.jg-seg--avail { background: #B0BEC5; }
.jg-mock-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.62rem;
  color: var(--jg-muted);
}
.jg-mock-legend span { display: inline-flex; align-items: center; gap: 4px; }
.jg-mock-legend .jg-seg {
  width: 12px;
  height: 8px;
  border-radius: 2px;
}

/* Navigation split */
.jg-mock-nav-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}
.jg-mock-nav-card {
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--jg-border);
  text-align: center;
  font-size: 0.78rem;
}
.jg-mock-nav-card--good {
  border-color: var(--jg-available);
  background: var(--jg-available-soft);
}
.jg-mock-nav-card--warn {
  border-color: #E8A317;
  background: rgba(232, 163, 23, 0.12);
}
.jg-mock-nav-label {
  margin: 0 0 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Sites list */
.jg-mock-sites {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
}
.jg-mock-sites li {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  margin-bottom: 6px;
  border: 1px solid var(--jg-border);
  border-radius: 8px;
  background: #FAFAFA;
  font-size: 0.82rem;
}
.jg-mock-sites li strong { color: var(--jg-navy); }
.jg-mock-sites li span { font-size: 0.72rem; color: var(--jg-muted); }

/* Infringement */
.jg-mock-infringe { text-align: center; }
.jg-mock-alert {
  margin: 0 0 8px;
  padding: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #B02A37;
}
.jg-mock-infringe__detail {
  margin: 0 0 10px;
  font-size: 0.75rem;
  color: var(--jg-muted);
}
.jg-mock-infringe__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Export */
.jg-mock-export-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.78rem;
}
.jg-mock-export-list li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.jg-mock-export-list li::before {
  content: "📄";
  position: absolute;
  left: 0;
  font-size: 0.7rem;
}

/* Offline */
.jg-mock-offline { text-align: center; padding: 8px; }
.jg-mock-offline__icon { font-size: 2rem; margin-bottom: 6px; }
.jg-mock-offline__bar {
  margin-top: 10px;
  padding: 6px 12px;
  background: #E8E8E8;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--jg-muted);
}
.jg-mock-offline__sync { font-weight: 600; }

body.jg-page--tour .jg-mock-host,
body.jg-page--promo .jg-mock-host { min-height: 200px; }

/* Promotional — pain / features mocks */
.jg-mock-pain {
  text-align: center;
  padding: 8px;
}
.jg-mock-pain__stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
  margin: 0 auto;
}
.jg-mock-pain__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.08);
  font-size: 0.78rem;
  text-align: left;
}
.jg-mock-pain__icon {
  flex-shrink: 0;
  font-size: 1.2rem;
}
.jg-mock-features {
  width: 100%;
  max-width: 300px;
}
.jg-mock-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.jg-mock-feature {
  padding: 10px;
  border: 1px solid var(--jg-border);
  border-radius: 8px;
  background: #FAFAFA;
  text-align: center;
  font-size: 0.72rem;
}
.jg-mock-feature__icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.jg-mock-feature strong {
  display: block;
  font-size: 0.75rem;
  color: var(--jg-navy);
  margin-bottom: 2px;
}
body.jg-page--promo .jg-brand-badge {
  background: rgba(0, 111, 207, 0.12);
  border-color: rgba(0, 111, 207, 0.35);
  color: var(--jg-blue);
}

.jg-audio-unlock {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: none;
  background: rgba(0, 23, 90, 0.78);
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.jg-audio-unlock[hidden] {
  display: none !important;
}

.jg-audio-unlock__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.jg-audio-unlock__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.jg-audio-unlock__hint {
  font-size: 0.9rem;
  opacity: 0.92;
  max-width: 300px;
  line-height: 1.35;
}

.jg-voice-toggle--needs-tap {
  animation: jg-voice-pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 3px var(--jg-gold-soft);
}

@keyframes jg-voice-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Promotional video landing */
.jg-shell--video {
  max-width: 980px;
}

.jg-video-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jg-video-wrap {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: var(--jg-radius);
  box-shadow: var(--jg-shadow);
  overflow: hidden;
}

.jg-promo-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.jg-video-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--jg-muted);
  text-align: center;
}

.jg-footer--video {
  margin-top: 18px;
}

.jg-footer--video .jg-controls {
  justify-content: center;
}
