:root {
  --navy: #10204a;
  --gold: #e09a16;
  --ink: #10204a;
  --muted: #5a6b8c;
  --line: #e3e8f2;
  --cream: #f8f6f0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: #eef1f7;
  color: var(--ink);
  line-height: 1.55;
}

/* ---- top shell bar ---- */
#shell-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px; background: var(--navy); color: #fff;
}
.brand { font-weight: 800; font-size: 15px; letter-spacing: .01em; }
.variant-switch { display: flex; gap: 6px; }
.v-btn {
  border: 1px solid rgba(255,255,255,.25); background: transparent; color: #c9d3e8;
  font: inherit; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 18px;
  cursor: pointer; transition: all .15s;
}
.v-btn:hover { border-color: var(--gold); color: #fff; }
.v-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---- stage (the actual client site content) ---- */
#stage { max-width: 900px; margin: 28px auto; padding: 0 20px; }
#stage .hero { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 40px 40px 32px; }
#stage h1 { font-size: 32px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; margin-bottom: 14px; }
#stage h2 { font-size: 20px; font-weight: 800; margin: 22px 0 8px; }
#stage .lede { font-size: 17px; color: var(--muted); margin-bottom: 18px; }
#stage .section { margin-top: 18px; }
#stage .block { background: var(--cream); border-radius: 10px; padding: 16px 18px; margin-bottom: 10px; }
#stage .block h3 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
#stage .block p { font-size: 14px; color: var(--muted); }
#stage .tag { display:inline-block; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; padding:3px 9px; border-radius:12px; background:#e8eefc; color:#1f4fd6; margin-right:6px; }

/* ---- feedback widget ---- */
#fb-trigger {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: 13px;
  padding: 12px 18px; border-radius: 24px; cursor: pointer; box-shadow: 0 4px 14px rgba(16,32,74,.2);
}
#fb-panel {
  position: fixed; bottom: 78px; right: 20px; z-index: 50; width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px;
  box-shadow: 0 10px 30px rgba(16,32,74,.18);
}
#fb-panel.hidden { display: none; }
.fb-head { font-weight: 800; font-size: 14px; margin-bottom: 4px; }
#fb-close { float: right; cursor: pointer; color: var(--muted); }
.fb-variant { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.fb-buttons { display: flex; gap: 6px; margin-bottom: 10px; }
.fb-btn { flex: 1; font: inherit; font-size: 12px; font-weight: 700; padding: 8px; border-radius: 8px; border: 1px solid var(--line); cursor: pointer; background: #fff; }
.fb-btn.good:hover, .fb-btn.good.on { background: #f0f7f1; border-color: #1b6b3a; color: #1b6b3a; }
.fb-btn.bad:hover, .fb-btn.bad.on { background: #fdf3f2; border-color: #b02318; color: #b02318; }
.fb-btn.flag:hover, .fb-btn.flag.on { background: #fef3e2; border-color: #e09a16; color: #8a6d00; }
#fb-note { width: 100%; min-height: 60px; font: inherit; font-size: 13px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; resize: vertical; margin-bottom: 8px; }
#fb-submit { width: 100%; font: inherit; font-weight: 800; font-size: 13px; padding: 9px; background: var(--navy); color: #fff; border: none; border-radius: 8px; cursor: pointer; }

@media (max-width: 640px) {
  #shell-bar { flex-direction: column; gap: 8px; align-items: flex-start; }
  #fb-panel { width: calc(100vw - 40px); right: 20px; }
}
