:root {
  --sky: #0f6f9f;
  --sky-deep: #03557e;
  --sky-soft: #e8f4fb;
  --amber: #f58220;
  --amber-soft: #fff3e8;
  --mint: #2a9d8f;
  --mint-soft: #e6f6f3;
  --coral: #e86a4a;
  --ink: #0b1220;
  --muted: #5b6b7c;
  --line: rgba(15, 86, 126, 0.11);
  --surface: #ffffff;
  --bg: #f4f7fa;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 86, 126, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 86, 126, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --top: 60px;
  --chrome: 108px;
  --focus: 0 0 0 3px rgba(15, 111, 159, 0.28);
}

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

html, body {
  margin: 0;
  height: 100%;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(900px 420px at 0% -10%, rgba(15, 111, 159, 0.09), transparent 60%),
    radial-gradient(700px 380px at 100% 0%, rgba(245, 130, 32, 0.07), transparent 55%),
    var(--bg);
}

button, a, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sky);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

:focus-visible { outline: none; box-shadow: var(--focus); }

.app {
  display: grid;
  grid-template-rows: var(--top) 1fr var(--chrome);
  height: 100dvh;
  min-height: 100%;
}

/* —— Topbar —— */
.topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand img { height: 28px; width: auto; }
.brand-sep { width: 1px; height: 18px; background: var(--line); }
.brand-label {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--sky-deep);
}

.chapters {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.chapters::-webkit-scrollbar { display: none; }

.chapter {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.chapter:hover { color: var(--sky-deep); background: rgba(15, 111, 159, 0.06); }
.chapter.is-active {
  color: var(--sky-deep);
  background: var(--sky-soft);
}
.chapter-tip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 30;
  pointer-events: none;
}
.chapter:hover .chapter-tip { display: block; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.lang {
  display: inline-flex;
  padding: 2px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.lang-btn {
  border: 0;
  background: transparent;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.lang-btn.is-active { background: var(--sky-soft); color: var(--sky-deep); }

/* —— Stage —— */
.stage {
  position: relative;
  overflow: hidden;
  outline: none;
}

.slide {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.38s var(--ease), transform 0.42s var(--ease), visibility 0.38s;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.frame {
  width: min(1120px, 100%);
  margin: 0 auto;
  min-height: calc(100% - 0.5rem);
}
.frame-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.frame-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.frame-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.frame-stack.tight { gap: 0.85rem; }
.frame-finale {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.75rem;
  padding: 1rem 0 2rem;
}

.copy-center { text-align: center; max-width: 640px; margin: 0 auto; }
.copy-center .lead { margin-left: auto; margin-right: auto; }
.copy.compact h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.copy.compact .lead { margin-bottom: 0.25rem; }

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
}
h1, h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h2 { font-size: clamp(1.45rem, 2.8vw, 2.15rem); }
h1 em, h2 em { font-style: normal; color: var(--sky); }
.lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 46ch;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.25rem; }
.cta-row.center { justify-content: center; }

.micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.micro li { display: inline-flex; align-items: center; gap: 0.35rem; }
.micro svg { width: 15px; height: 15px; color: var(--sky); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.badge-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky-deep);
}
.badge-row svg { width: 14px; height: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.btn-primary {
  background: linear-gradient(160deg, var(--sky), var(--sky-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(3, 85, 126, 0.22);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 10px 24px rgba(3, 85, 126, 0.28); }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--sky-deep);
}
.btn-ghost:hover { border-color: rgba(15, 111, 159, 0.28); }
.btn-sm { min-height: 34px; padding: 0.35rem 0.8rem; font-size: 0.85rem; }
.btn-lg { min-height: 48px; padding: 0.7rem 1.35rem; font-size: 1rem; }
.btn-block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pill.live { background: #ecfdf5; color: #047857; }
.pill.soft { background: var(--sky-soft); color: var(--sky-deep); }
.pill.ok { background: var(--mint-soft); color: #1b7a6e; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Browser / hero demo */
.browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(0);
  animation: soft-in 0.7s var(--ease) both;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}
.browser-bar > span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #dbe4ee;
}
.browser-url {
  margin-left: 0.5rem;
  flex: 1;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
}
.browser-body { padding: 0.9rem; }
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.hero-kpi article {
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fbfcfe;
}
.hero-kpi b { display: block; font-family: var(--display); font-size: 1.15rem; }
.hero-kpi span { font-size: 0.68rem; color: var(--muted); }
.hero-kpi .pulse { border-color: rgba(16, 185, 129, 0.35); background: #f0fdf8; }
.hero-kpi .pulse b { color: #047857; font-size: 0.85rem; letter-spacing: 0.06em; }
.hero-panels { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0.55rem; }
.hero-panel {
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.hero-panel header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.mini-roster { margin: 0; padding: 0; list-style: none; }
.mini-roster li {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; padding: 0.28rem 0; color: var(--ink);
}
.mini-roster .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #cbd5e1;
}
.mini-roster .on .dot { background: #10b981; }
.mini-roster .wait .dot { background: #f59e0b; }
.mini-roster .wait.is-on .dot { background: #10b981; }
.next-event strong { display: block; font-size: 0.88rem; }
.next-event span { font-size: 0.75rem; color: var(--muted); }
.tiny-feed { margin-top: 0.55rem; font-size: 0.75rem; color: var(--muted); }

@keyframes soft-in {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

/* OTP demo */
.otp-card {
  width: min(360px, 100%);
  margin-left: auto;
  padding: 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.otp-logo {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--sky), var(--sky-deep));
  color: #fff; font-weight: 800; font-family: var(--display);
  margin-bottom: 0.85rem;
}
.otp-card h3 { margin: 0 0 1rem; font-family: var(--display); font-size: 1.05rem; }
.otp-stage { display: none; }
.otp-stage.is-active { display: block; animation: soft-in 0.4s var(--ease); }
.otp-card label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.otp-input {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f8fafc;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  min-height: 44px;
}
.otp-digits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.35rem;
}
.otp-digits span {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  background: #fff;
}
.otp-toast {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--mint-soft);
  color: #1b7a6e;
  font-weight: 650;
}
.otp-hint { color: var(--muted); font-size: 0.85rem; }
.otp-success {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint-soft); color: var(--mint);
  margin: 0.5rem auto 0.75rem;
}
.otp-success svg { width: 26px; height: 26px; }
.otp-stage[data-otp-stage="ok"] { text-align: center; }

/* Dashboard */
.dash-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.dash-kpis article {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fbfcfe;
}
.dash-kpis span { display: block; font-size: 0.72rem; color: var(--muted); margin-bottom: 0.25rem; }
.dash-kpis b { font-family: var(--display); font-size: 1.35rem; }
.dash-kpis .soft { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.dash-kpis .attn {
  border-color: rgba(232, 106, 74, 0.35);
  background: #fff7f5;
}
.dash-kpis .attn.is-pulse { animation: attn-glow 2s ease infinite; }
@keyframes attn-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 106, 74, 0); }
  50% { box-shadow: 0 0 0 4px rgba(232, 106, 74, 0.12); }
}
.dash-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.6rem;
}
.dash-card {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
}
.dash-card header {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 0.55rem;
}
.dash-card header svg { width: 15px; height: 15px; color: var(--sky); }
.dash-card.highlight-attn { border-color: rgba(232, 106, 74, 0.28); background: #fffaf8; }
.dash-card ul { margin: 0; padding: 0; list-style: none; }
.dash-card li { padding: 0.45rem 0; border-top: 1px solid var(--line); font-size: 0.82rem; }
.dash-card li:first-child { border-top: 0; padding-top: 0; }
.dash-card li strong { display: block; }
.dash-card li span { color: var(--muted); font-size: 0.75rem; }
.dash-card li.is-hot strong { color: var(--coral); }
.meta { margin: 0; color: var(--muted); font-size: 0.78rem; }
.progress-line {
  height: 6px; border-radius: 999px; background: #eef3f7; margin: 0.55rem 0;
  overflow: hidden;
}
.progress-line i {
  display: block; height: 100%; width: var(--w, 50%);
  background: linear-gradient(90deg, var(--sky), var(--mint));
  border-radius: inherit;
}
.feed li { color: var(--muted); }

/* Personal search */
.search-demo { width: min(960px, 100%); margin: 0 auto; }
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 56px;
  font-size: 1rem;
  color: var(--ink);
}
.search-bar svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
.search-typed { flex: 1; min-height: 1.2em; }
.caret {
  width: 2px; height: 1.1em; background: var(--sky);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.profile {
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.profile:hover { transform: translateY(-2px); border-color: rgba(15, 111, 159, 0.28); }
.profile.is-selected { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(15, 111, 159, 0.12); }
.profile-top { display: flex; gap: 0.65rem; align-items: center; margin-bottom: 0.55rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 700; color: #fff; font-family: var(--display);
}
.avatar.c0 { background: #0f6f9f; }
.avatar.c1 { background: #2a9d8f; }
.avatar.c2 { background: #f58220; }
.avatar.c3 { background: #6366f1; }
.avatar.c4 { background: #e86a4a; }
.avatar.c5 { background: #0ea5e9; }
.profile h3 { margin: 0; font-size: 0.92rem; font-family: var(--display); }
.profile .city { margin: 0; font-size: 0.75rem; color: var(--muted); }
.profile-meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  font-size: 0.72rem; color: var(--muted); margin-bottom: 0.55rem;
}
.profile-meta span {
  padding: 0.15rem 0.4rem; border-radius: 6px; background: #f1f5f9;
}
.profile-actions { display: flex; gap: 0.4rem; }
.icon-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--muted);
}
.icon-btn.is-on { color: var(--coral); border-color: rgba(232, 106, 74, 0.35); background: #fff5f2; }
.icon-btn svg { width: 16px; height: 16px; }
.select-btn {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--sky-deep);
}
.profile.is-selected .select-btn {
  background: var(--sky-soft);
  border-color: transparent;
}
.search-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Wizard */
.wizard-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.wiz-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.wiz-step {
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.55rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.wiz-step span {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line);
  font-size: 0.7rem;
}
.wiz-step.is-active, .wiz-step.is-done {
  color: var(--sky-deep);
  background: var(--sky-soft);
  border-color: transparent;
}
.wiz-step.is-done span, .wiz-step.is-active span {
  background: var(--sky); color: #fff; border-color: var(--sky);
}
.wiz-panel { display: none; animation: soft-in 0.35s var(--ease); }
.wiz-panel.is-active { display: block; }
.chip-select { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.chip.is-on { background: var(--sky); color: #fff; border-color: var(--sky); }
.field {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.field span { color: var(--muted); }
.ready-box {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem;
  border-radius: 12px;
  background: var(--mint-soft);
  margin-bottom: 0.85rem;
}
.ready-box svg { width: 20px; height: 20px; color: var(--mint); margin-top: 2px; }
.ready-box strong { display: block; margin-bottom: 0.2rem; }
.ready-box p { margin: 0; font-size: 0.82rem; color: #1b7a6e; }

/* Calendar */
.cal-demo {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
  width: min(900px, 100%);
  margin: 0 auto;
}
.cal-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.seg {
  display: inline-flex;
  padding: 3px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f8fafc;
}
.seg-btn {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
}
.seg-btn.is-active { background: #fff; color: var(--sky-deep); box-shadow: var(--shadow); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 0.55rem; font-size: 0.72rem; color: var(--muted); }
.lg::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px; border-radius: 2px;
  margin-right: 0.3rem;
  vertical-align: middle;
}
.lg.campaign::before { background: var(--sky); }
.lg.request::before { background: var(--amber); }
.lg.training::before { background: var(--mint); }
.lg.client::before { background: #6366f1; }
.cal-head, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}
.cal-head span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.25rem;
}
.cal-day {
  min-height: 64px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.3rem;
  background: #fbfcfe;
  font-size: 0.72rem;
}
.cal-day.muted { opacity: 0.4; }
.cal-day .n { font-weight: 700; color: var(--muted); margin-bottom: 0.2rem; }
.cal-ev {
  display: block;
  padding: 0.12rem 0.3rem;
  border-radius: 4px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 650;
  margin-bottom: 0.15rem;
  cursor: pointer;
  border: 0;
  width: 100%;
  text-align: left;
}
.cal-ev.campaign { background: var(--sky); }
.cal-ev.request { background: var(--amber); }
.cal-ev.training { background: var(--mint); }
.cal-ev.client { background: #6366f1; }
.cal-popover {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  animation: soft-in 0.3s var(--ease);
}
.cal-popover strong { display: block; font-size: 0.88rem; }
.cal-popover p { margin: 0.2rem 0 0; font-size: 0.78rem; color: var(--muted); }

/* Campaign boards */
.camp-boards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.camp-col h3 {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.camp-card {
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 0.55rem;
  box-shadow: var(--shadow);
}
.camp-card.is-live { border-color: rgba(16, 185, 129, 0.35); }
.camp-card header { font-family: var(--display); font-weight: 700; margin-bottom: 0.25rem; }
.camp-card p { margin: 0 0 0.65rem; font-size: 0.82rem; color: var(--muted); }
.camp-card footer {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; font-weight: 600; color: var(--sky-deep);
}

/* Workspace */
.ws-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ws-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.ws-top strong { display: block; font-family: var(--display); }
.ws-top span { font-size: 0.78rem; color: var(--muted); }
.ws-tabs {
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.ws-tab {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
}
.ws-tab.is-active { background: var(--sky-soft); color: var(--sky-deep); }
.ws-panels { padding: 1rem; min-height: 140px; }
.ws-panel { display: none; animation: soft-in 0.35s var(--ease); }
.ws-panel.is-active { display: block; }
.ws-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ws-stats div {
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-align: center;
}
.ws-stats b { display: block; font-family: var(--display); font-size: 1.2rem; }
.ws-stats span { font-size: 0.72rem; color: var(--muted); }
.ws-note { margin: 0; color: var(--muted); font-size: 0.85rem; }
.ws-list { margin: 0; padding: 0; list-style: none; }
.ws-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.ws-list .ok { color: #047857; }
.ws-list .wait { color: #b45309; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
.photo-strip i {
  display: block; aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #e2e8f0);
}
.brief-box {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fbfcfe;
}
.brief-box p { margin: 0.35rem 0 0.65rem; color: var(--muted); font-size: 0.88rem; }
.file-chip {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 650;
}
.form-mini {
  padding: 1rem;
  border-radius: 12px;
  background: var(--amber-soft);
  color: #9a4b07;
  font-weight: 650;
}
.report-bars > div { margin-bottom: 0.65rem; }
.report-bars span { display: block; font-size: 0.78rem; margin-bottom: 0.25rem; }
.report-bars i {
  display: block; height: 8px; width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--mint));
}

/* Candidates */
.cand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.cand {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  text-align: left;
  padding: 0;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.cand:hover { transform: translateY(-2px); }
.cand.is-selected { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(15, 111, 159, 0.12); }
.cand-photo {
  height: 110px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
}
.cand-body { padding: 0.7rem; }
.cand-body strong { display: block; font-size: 0.9rem; }
.cand-body span { font-size: 0.75rem; color: var(--muted); }
.cand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 650;
  font-size: 0.88rem;
}
.cand-status { color: var(--mint); font-size: 0.82rem; }
.drawer {
  position: absolute;
  top: 12%;
  right: 4%;
  width: min(300px, 90vw);
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: soft-in 0.3s var(--ease);
}
.drawer-close {
  position: absolute;
  top: 0.5rem; right: 0.65rem;
  border: 0; background: transparent;
  font-size: 1.25rem; color: var(--muted);
}
.drawer-avatar {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 0.65rem;
}
.frame { position: relative; }

/* Attendance */
.big-stat {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 1rem;
}
.big-stat b {
  font-family: var(--display);
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--sky);
}
.big-stat span { color: var(--muted); font-weight: 600; }
.att-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem;
  box-shadow: var(--shadow);
}
.att-list { margin: 0; padding: 0; list-style: none; }
.att-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto 42px;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 12px;
  margin-bottom: 0.4rem;
  border: 1px solid var(--line);
}
.att-list .ok { background: #f0fdf8; border-color: rgba(16, 185, 129, 0.2); }
.att-list .pending { background: #fffbeb; border-color: rgba(245, 158, 11, 0.25); }
.att-list .pending.is-done { background: #f0fdf8; border-color: rgba(16, 185, 129, 0.2); }
.ava {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.ava.m { background: #0f6f9f; }
.ava.a { background: #2a9d8f; }
.ava.x { background: #f59e0b; }
.att-list strong { display: block; font-size: 0.9rem; }
.att-list span { font-size: 0.75rem; color: var(--muted); }
.att-list em { font-style: normal; font-size: 0.75rem; font-weight: 700; color: #047857; }
.att-list .pending em { color: #b45309; }
.thumb, .mini-map {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #e2e8f0);
}
.mini-map { position: relative; overflow: hidden; background: #dce9f2; }
.mini-map i {
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; margin: -4px;
  border-radius: 50%; background: var(--sky);
  box-shadow: 0 0 0 4px rgba(15, 111, 159, 0.2);
}

/* Forms */
.forms-split {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.builder, .report-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.builder-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--amber-soft);
  color: #9a4b07;
  font-size: 0.7rem;
  font-weight: 700;
}
.ai-badge svg { width: 12px; height: 12px; }
.q-list { margin: 0; padding-left: 1.1rem; color: var(--ink); }
.q-list li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.phone {
  width: min(220px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  border: 3px solid #1e293b;
  background: #0f172a;
  padding: 0.55rem;
  box-shadow: var(--shadow-lg);
}
.phone-notch {
  width: 72px; height: 8px; border-radius: 999px;
  background: #334155; margin: 0.2rem auto 0.55rem;
}
.phone-screen {
  background: #fff;
  border-radius: 20px;
  padding: 0.85rem;
  min-height: 260px;
}
.ph-title { margin: 0 0 0.85rem; font-weight: 700; font-size: 0.88rem; }
.ph-q { display: block; font-size: 0.82rem; margin-bottom: 0.55rem; color: var(--muted); }
.ph-opts { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; }
.ph-opt {
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.55rem;
  font-weight: 650;
}
.ph-opt.is-on { background: var(--sky-soft); border-color: var(--sky); color: var(--sky-deep); }
.report-side header { font-weight: 700; margin-bottom: 0.65rem; }
.empty-hint { color: var(--muted); font-size: 0.85rem; }
#reportList { margin: 0; padding: 0; list-style: none; }
#reportList li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  animation: soft-in 0.35s var(--ease);
}

/* Distribution */
.dist-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.dist-kpis article {
  padding: 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}
.dist-kpis b { display: block; font-family: var(--display); font-size: 1.4rem; }
.dist-kpis .soft { color: var(--muted); font-size: 1rem; }
.dist-kpis span { font-size: 0.75rem; color: var(--muted); }
.dist-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.map-svg { display: block; width: 100%; height: auto; }
.zone { fill: rgba(15, 111, 159, 0.12); stroke: rgba(15, 111, 159, 0.35); stroke-width: 2; }
.zone.done { fill: rgba(42, 157, 143, 0.28); stroke: rgba(42, 157, 143, 0.55); }
.photo-evidence {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: flex; gap: 0.4rem;
}
.ev {
  width: 48px; height: 48px; border-radius: 10px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  box-shadow: var(--shadow);
}

/* Notifications */
.notif-demo { position: relative; }
.bell-btn {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--sky-deep);
  box-shadow: var(--shadow);
}
.bell-btn svg { width: 20px; height: 20px; }
.badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid; place-items: center;
}
.notif-panel {
  margin-top: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.notif {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s;
}
.notif:last-child { border-bottom: 0; }
.notif:hover, .notif.is-active { background: var(--sky-soft); }
.notif strong { display: block; font-size: 0.9rem; }
.notif span { font-size: 0.78rem; color: var(--muted); }
.deep-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.deep {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed var(--line);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  opacity: 0.5;
  transition: opacity 0.25s, border-color 0.25s, color 0.25s;
}
.deep.is-lit {
  opacity: 1;
  border-style: solid;
  border-color: var(--sky);
  color: var(--sky-deep);
  background: var(--sky-soft);
}

/* Finance */
.fin-demo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.fin-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.fin-kpis article {
  padding: 0.85rem;
  border-radius: 12px;
  background: #fbfcfe;
  border: 1px solid var(--line);
}
.fin-kpis span { display: block; font-size: 0.72rem; color: var(--muted); margin-bottom: 0.25rem; }
.fin-kpis b { font-family: var(--display); font-size: 1.15rem; }
.fin-table-wrap { overflow-x: auto; }
.fin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.fin-table th {
  text-align: left;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
}
.fin-table td {
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
}
.st {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.st.paid { background: var(--mint-soft); color: #1b7a6e; }
.st.due { background: var(--amber-soft); color: #9a4b07; }
.st.overdue { background: #fff1ee; color: var(--coral); }
.linkish {
  border: 0;
  background: transparent;
  color: var(--sky);
  font-weight: 700;
  font-size: 0.8rem;
}
.sync-note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.sync-note svg { width: 14px; height: 14px; }

/* Archive */
.arch-demo { position: relative; }
.arch-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.arch-search svg { width: 16px; height: 16px; color: var(--sky); }
.arch-card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.arch-card.is-out { opacity: 0; transform: scale(0.98); pointer-events: none; }
.arch-card header strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.arch-card header span { font-size: 0.8rem; color: var(--muted); }
.arch-card > p { color: var(--muted); font-size: 0.88rem; }
.pv-row { margin: 0.75rem 0; }
.arch-actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.arch-morph {
  position: absolute;
  inset: 3.2rem 0 0;
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 111, 159, 0.25);
  box-shadow: var(--shadow-lg);
  animation: soft-in 0.4s var(--ease);
}
.arch-morph ul { margin: 0.65rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.88rem; }

/* Training */
.train-cal {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
}
.train-cal strong { display: block; font-family: var(--display); margin-bottom: 0.2rem; }
.train-cal span { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.85rem; }
.video-room {
  padding: 0.75rem;
  border-radius: 16px;
  background: #0f172a;
  animation: soft-in 0.4s var(--ease);
}
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.v-tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: #1e293b;
  color: #e2e8f0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 650;
}
.v-tile.you { background: linear-gradient(145deg, var(--sky), var(--sky-deep)); color: #fff; }

/* Support */
.faq-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(640px, 100%);
  margin: 0 auto 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 600;
}
.faq-search svg { width: 16px; height: 16px; color: var(--sky); }
.sup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.sup-grid article {
  padding: 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.sup-grid svg { width: 20px; height: 20px; color: var(--sky); margin-bottom: 0.55rem; }
.sup-grid h3 { margin: 0 0 0.35rem; font-family: var(--display); font-size: 1rem; }
.sup-grid p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.4; }
.ticket-preview {
  padding: 0.65rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.ticket-preview strong { display: block; color: var(--ink); margin-bottom: 0.2rem; }

/* Lifecycle finale */
.lifecycle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: min(900px, 100%);
}
.lifecycle li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 88px;
  padding: 0.85rem 0.65rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0.35;
  transform: scale(0.96);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}
.lifecycle li.is-on {
  opacity: 1;
  transform: none;
  border-color: rgba(15, 111, 159, 0.3);
  box-shadow: var(--shadow);
}
.lifecycle li svg { width: 20px; height: 20px; color: var(--sky); }
.lifecycle li span { font-size: 0.75rem; font-weight: 700; }
.lifecycle li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  width: 0.45rem;
  height: 2px;
  background: var(--line);
}

/* Chrome footer — floating dock */
.chrome {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem 0.85rem;
  background: transparent;
  border-top: 0;
  z-index: 30;
  pointer-events: none;
}
.chrome-dock {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(920px, 100%);
  padding: 0.7rem 0.85rem 0.7rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 86, 126, 0.12);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(15, 86, 126, 0.14);
  backdrop-filter: blur(14px);
}

.btn-chrome-back {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--sky-deep);
  font-weight: 650;
  font-size: 0.9rem;
  box-shadow: none;
}
.btn-chrome-back:hover:not(:disabled) {
  border-color: rgba(15, 111, 159, 0.3);
  background: var(--sky-soft);
}
.btn-chrome-back:disabled {
  opacity: 0.4;
}

.progress {
  flex: 1;
  min-width: 0;
  max-width: 420px;
  text-align: center;
}
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sky-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.progress-meta .sep { opacity: 0.45; font-weight: 700; }
.section-name {
  margin-left: 0.45rem;
  letter-spacing: 0.1em;
  color: var(--sky);
  font-size: 0.72rem;
}
.progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 111, 159, 0.12);
  overflow: hidden;
  margin: 0 auto;
  max-width: 280px;
}
.progress-track i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky) 0%, #1d7bb0 45%, var(--amber) 100%);
  transition: width 0.35s var(--ease);
  box-shadow: 0 0 8px rgba(245, 130, 32, 0.35);
}
.progress-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}
.progress-hint strong { color: var(--sky-deep); font-weight: 700; }
.progress-hint__ico {
  color: var(--amber);
  font-size: 0.78rem;
  line-height: 1;
}

/* Continue — attention CTA */
.btn-continue {
  position: relative;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0.7rem 1.25rem 0.7rem 1.35rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(100deg, #0f6f9f 0%, #1a6fa8 42%, #f58220 100%);
  color: #fff;
  font-weight: 750;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow:
    0 0 0 4px rgba(245, 130, 32, 0.14),
    0 10px 28px rgba(15, 111, 159, 0.32);
  gap: 0.45rem;
}
.btn-continue:hover {
  color: #fff;
  box-shadow:
    0 0 0 5px rgba(245, 130, 32, 0.18),
    0 14px 32px rgba(15, 111, 159, 0.38);
}
.btn-continue__arrow {
  display: inline-block;
  transition: transform 0.18s var(--ease);
}
.btn-continue:hover .btn-continue__arrow {
  transform: translateX(3px);
}

.btn-continue.is-attention {
  animation: continue-nudge 2.4s var(--ease) infinite;
}
.btn-continue.is-attention::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 10px;
  width: 10px;
  height: 10px;
  background:
    radial-gradient(circle at 70% 30%, #fff 0 1.5px, transparent 2px),
    radial-gradient(circle at 20% 70%, rgba(255, 210, 160, 0.95) 0 1px, transparent 1.5px);
  opacity: 0.9;
  pointer-events: none;
  animation: continue-spark 2.4s ease infinite;
}

@keyframes continue-nudge {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.02); }
  55% { transform: translateY(0) scale(1); }
  70% { transform: translateY(-1.5px) scale(1.01); }
}

@keyframes continue-spark {
  0%, 100% { opacity: 0.35; transform: translate(0, 0) scale(0.8); }
  40% { opacity: 1; transform: translate(2px, -3px) scale(1.15); }
  70% { opacity: 0.5; transform: translate(1px, -1px) scale(1); }
}

.btn-continue.is-settled {
  animation: none;
}
.btn-continue.is-settled::after {
  display: none;
}

/* Icons base */
[data-icon] svg,
i[data-icon] svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 1100px) {
  .frame-hero, .frame-split { grid-template-columns: 1fr; }
  .hero-demo { order: -1; max-width: 520px; margin: 0 auto; }
  .otp-card { margin: 0 auto; }
  .dash-grid { grid-template-columns: 1fr; }
  .forms-split { grid-template-columns: 1fr; }
  .phone { margin: 0.5rem auto; }
  .camp-boards { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .cand-grid { grid-template-columns: repeat(2, 1fr); }
  .sup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .chapters { display: none; }
  .brand-label { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .hero-kpi, .hero-panels, .fin-kpis, .dist-kpis, .ws-stats { grid-template-columns: 1fr 1fr; }
  .wiz-steps { grid-template-columns: repeat(2, 1fr); }
  .lifecycle li:not(:last-child)::after { display: none; }
}

@media (max-width: 560px) {
  .topbar { padding: 0 0.75rem; }
  .topbar-actions .btn { display: none; }
  .profile-grid, .cand-grid { grid-template-columns: 1fr; }
  .chrome { padding: 0 0.55rem 0.65rem; }
  .chrome-dock {
    gap: 0.45rem;
    padding: 0.55rem 0.55rem 0.55rem 0.6rem;
    border-radius: 18px;
  }
  .progress-hint { display: none; }
  .progress-meta { font-size: 0.68rem; margin-bottom: 0.3rem; }
  .section-name { display: none; }
  .progress-track { max-width: 100%; height: 5px; }
  .btn-chrome-back {
    min-height: 40px;
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
  .btn-continue {
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
  }
  .att-list li { grid-template-columns: 42px 1fr auto; }
  .att-list .thumb, .att-list .mini-map { display: none; }
  .cal-day { min-height: 52px; }
  .cal-ev { font-size: 0; padding: 0.25rem; }
  .cal-ev::before { content: ""; display: block; width: 100%; height: 6px; border-radius: 3px; background: currentColor; }
}

@media (max-width: 860px) {
  :root { --chrome: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .caret { animation: none; }
  .live-dot { animation: none; }
  .btn-continue.is-attention,
  .btn-continue.is-attention::after { animation: none !important; }
}
