/* ═══════════════════════════════════════════
   QHSE CONTROL — CSS PRINCIPAL
   Premium light theme · 2026
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:         #ffffff;
  --bg2:        #f8f8f6;
  --bg3:        #f2f2ef;
  --ink:        #0a0a0a;
  --ink2:       #111111;
  --ink3:       #2a2a2a;
  --muted:      #5a5a5a;
  --faint:      #909090;

  --teal:       #007a5e;
  --teal2:      #009970;
  --teal3:      #00c488;
  --teal-bg:    rgba(0,122,94,.06);
  --teal-mid:   rgba(0,122,94,.18);
  --teal-glow:  rgba(0,153,112,.28);

  --gold:       #c4912a;
  --gold-bg:    rgba(196,145,42,.08);

  --red:        #dc2626;
  --red-bg:     rgba(220,38,38,.06);
  --amber:      #b45309;
  --amber-bg:   rgba(180,83,9,.07);

  --border:     #e4e4e0;
  --border2:    #d0d0cc;

  --sh:         0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.04);
  --sh-lg:      0 4px 32px rgba(0,0,0,.08), 0 1px 6px rgba(0,0,0,.04);
  --sh-xl:      0 20px 60px rgba(0,0,0,.12), 0 2px 10px rgba(0,0,0,.04);
  --sh-glow:    0 0 40px rgba(0,153,112,.15);

  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 62px; padding: 0 48px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--ink);
  text-decoration: none; letter-spacing: -.5px; flex-shrink: 0;
  margin-right: 44px;
}
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white; font-weight: 900;
}
.nav-links { display: flex; gap: 2px; list-style: none; flex: 1; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .15s;
  padding: 6px 13px; border-radius: 7px;
}
.nav-links a:hover { color: var(--ink); background: var(--bg2); }
.nav-r { display: flex; gap: 8px; margin-left: auto; align-items: center; }

.nbtn {
  padding: 7px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .15s;
  white-space: nowrap;
}
.nbtn-tool {
  border: 1px solid var(--teal-mid);
  background: var(--teal-bg);
  color: var(--teal);
}
.nbtn-tool:hover { background: rgba(0,122,94,.12); }
.nbtn-ghost { border: 1px solid var(--border); background: transparent; color: var(--ink3); }
.nbtn-ghost:hover { background: var(--bg2); }
.nbtn-cta { background: var(--ink); color: white; border: 1px solid transparent; letter-spacing: -.1px; }
.nbtn-cta:hover { background: #222; }

/* ── SECTIONS BASE ── */
section { padding: 104px 52px; overflow-x: hidden; }
.wrap { max-width: 1200px; margin: 0 auto; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before { content:''; width:20px; height:2px; background: var(--teal); border-radius:2px; }

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 800;
  line-height: 1.02; letter-spacing: -2px; color: var(--ink);
  margin-bottom: 18px;
}
h2 .t { color: var(--teal); }
h2 .g { color: #b8b8b2; }

.lead {
  font-size: 17px; color: var(--muted);
  line-height: 1.8; max-width: 520px;
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 13px 28px; border-radius: 9px;
  background: var(--ink); color: white; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: -.1px;
  transition: all .18s; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
}
.btn-primary:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn-teal {
  padding: 13px 28px; border-radius: 9px;
  background: var(--teal); color: white; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: -.1px;
  transition: all .18s; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px var(--teal-glow);
}
.btn-teal:hover { background: var(--teal2); transform: translateY(-1px); box-shadow: 0 8px 28px var(--teal-glow); }

.btn-soft {
  padding: 13px 24px; border-radius: 9px;
  background: white; color: var(--ink3); font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border);
  transition: all .18s; letter-spacing: -.1px;
}
.btn-soft:hover { border-color: var(--border2); background: var(--bg2); color: var(--ink); transform: translateY(-1px); }

/* ── REVEAL ANIMATIONS ── */
.r { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.r.v { opacity: 1; transform: translateY(0); }
.r[data-d="1"] { transition-delay: .1s; }
.r[data-d="2"] { transition-delay: .18s; }
.r[data-d="3"] { transition-delay: .26s; }
.r[data-d="4"] { transition-delay: .34s; }
.r[data-d="5"] { transition-delay: .42s; }

.r-left { opacity: 0; transform: translateX(-36px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.r-left.v { opacity: 1; transform: translateX(0); }
.r-right { opacity: 0; transform: translateX(36px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.r-right.v { opacity: 1; transform: translateX(0); }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 128px 52px 88px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
  background: #ffffff;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .3;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, black 20%, transparent 100%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px 5px 8px; border-radius: 100px;
  background: white; border: 1px solid var(--border);
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  margin-bottom: 36px; position: relative; z-index: 2;
  animation: fadeDown .55s ease both;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  letter-spacing: .2px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  animation: blink 3s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 60%{opacity:.25} }

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(54px, 7vw, 96px); font-weight: 800;
  line-height: .94; letter-spacing: -4px; color: var(--ink);
  max-width: 860px; margin-bottom: 30px;
  position: relative; z-index: 2;
  animation: fadeUp .65s .08s ease both;
}
.hero-lead {
  font-size: 17.5px; line-height: 1.75; color: #555;
  max-width: 500px; margin: 0 auto 40px;
  font-weight: 400; position: relative; z-index: 2;
  animation: fadeUp .65s .18s ease both;
}
.hero-btns {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2; margin-bottom: 60px;
  animation: fadeUp .65s .28s ease both;
}
.hero-btns-note {
  font-size: 12px; color: var(--faint);
  margin-top: 12px; text-align: center;
  position: relative; z-index: 2;
  animation: fadeUp .65s .36s ease both;
}

/* PROOF STRIP */
.proof-row {
  display: flex; position: relative; z-index: 2;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sh);
  margin-bottom: 72px;
  animation: fadeUp .65s .34s ease both;
}
.proof-item { padding: 22px 40px; text-align: center; border-right: 1px solid var(--border); transition: background .15s; cursor: default; }
.proof-item:last-child { border-right: none; }
.proof-item:hover { background: var(--bg2); }
.pv { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -1px; }
.proof-item:hover .pv { color: var(--teal); transition: color .3s; }
.pl { font-size: 11px; color: var(--faint); margin-top: 7px; text-transform: uppercase; letter-spacing: .8px; font-weight: 500; }

/* HERO MOCKUP */
.hero-mockup { position: relative; z-index: 2; width: 100%; max-width: 1000px; animation: fadeUp .75s .52s ease both; }
.browser {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-xl);
}
.browser-bar {
  background: #f0f0ee; padding: 13px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.bdots { display: flex; gap: 5px; }
.bd { width: 11px; height: 11px; border-radius: 50%; }
.bd.r { background:#ff5f57; } .bd.y { background:#febc2e; } .bd.g { background:#28c840; }
.burl {
  flex: 1; background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 14px; font-size: 11px;
  color: var(--muted); font-family: 'DM Mono', monospace; margin: 0 16px;
}
.browser-img { width: 100%; display: block; min-height: 320px; background: var(--bg2); }

/* KPI floating cards */
.kpi-float {
  position: absolute; background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 16px 20px;
  box-shadow: var(--sh-lg); z-index: 10; min-width: 170px;
  animation: floatCard 6s ease-in-out infinite;
}
.kpi-float.kf1 { top: 14%; left: -5%; animation-delay: 0s; }
.kpi-float.kf2 { top: 42%; right: -4%; animation-delay: -2s; }
.kpi-float.kf3 { bottom: 18%; left: -3%; animation-delay: -4s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.kf-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--faint); margin-bottom: 5px; }
.kf-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; line-height: 1; }
.kf-val.red { color: var(--red); }
.kf-val.amber { color: var(--amber); }
.kf-val.teal { color: var(--teal); }
.kf-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }
.kf-bar { height: 4px; border-radius: 2px; margin-top: 10px; background: var(--bg3); overflow: hidden; }
.kf-bar-fill { height: 100%; border-radius: 2px; }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 140px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-size: 10px; color: var(--faint); letter-spacing: 1.5px; text-transform: uppercase;
  animation: fadeUp 1s 1.4s ease both; z-index: 10;
}
.scroll-arrow {
  width: 18px; height: 18px; border-right: 2px solid var(--teal-mid);
  border-bottom: 2px solid var(--teal-mid); transform: rotate(45deg);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ── LOGOS MARQUEE ── */
.logos {
  background: var(--ink2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden; position: relative; padding: 0;
}
.logos::before, .logos::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.logos::before { left: 0; background: linear-gradient(90deg, var(--ink2), transparent); }
.logos::after  { right: 0; background: linear-gradient(-90deg, var(--ink2), transparent); }
.logos-label {
  text-align: center; padding: 20px 52px 0;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.22);
}
.logos-track-wrap { overflow: hidden; padding: 16px 0 22px; }
.logos-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.lchip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 30px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.45); white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: color .25s; cursor: default;
}
.lchip:hover { color: var(--teal3); }
.lchip-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; transition: all .25s;
}
.lchip:hover .lchip-icon { background: var(--teal-bg); border-color: var(--teal-mid); }

/* ── PROBLEM ── */
.problem { background: var(--bg2); }
.problem .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prob-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.prob-card {
  display: flex; gap: 16px; padding: 20px 22px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .3s cubic-bezier(.34,1.56,.64,1); cursor: default;
}
.prob-card:hover {
  border-color: rgba(220,38,38,.22); background: #fef8f8;
  transform: translateX(6px); box-shadow: var(--sh);
}
.pico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--red-bg); border: 1px solid rgba(220,38,38,.18);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.pt { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.pd { font-size: 13px; color: var(--muted); line-height: 1.65; }

.cost-box {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--sh-lg); position: sticky; top: 88px;
}
.cost-top {
  padding: 22px 26px; background: linear-gradient(135deg, #fff8f8, #fff0f0);
  border-bottom: 1px solid rgba(220,38,38,.1);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 8px;
}
.cost-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 26px; border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.cost-row:last-child { border-bottom: none; }
.cost-row:hover { background: var(--bg2); }
.cl { font-size: 13px; color: var(--muted); }
.cv { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 800; color: var(--red); }
.cv.ok { color: var(--teal); }
.cost-foot {
  padding: 22px 26px; background: linear-gradient(135deg, #edf8f4, #dff5ee);
  border-top: 1px solid rgba(0,122,94,.15); text-align: center;
}
.cf-big { font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; font-weight: 800; color: var(--teal); }
.cf-note { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }

/* ── FEATURES ── */
.features { background: white; }
.feat-head { text-align: center; margin-bottom: 56px; }
.feat-head .lead { margin: 0 auto; text-align: center; }

.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-lg);
}
.feat-card {
  background: white; padding: 34px 30px;
  transition: background .25s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.feat-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--fc, var(--teal));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.feat-card:hover { background: #fafcfb; }
.feat-card:hover::before { transform: scaleY(1); }
.feat-card:nth-child(1) { --fc:#dc2626; --fc-bg:rgba(220,38,38,.07); --fc-mid:rgba(220,38,38,.18); }
.feat-card:nth-child(2) { --fc:#0369a1; --fc-bg:rgba(3,105,161,.07); --fc-mid:rgba(3,105,161,.18); }
.feat-card:nth-child(3) { --fc:#7c3aed; --fc-bg:rgba(124,58,237,.07); --fc-mid:rgba(124,58,237,.18); }
.feat-card:nth-child(4) { --fc:#b45309; --fc-bg:rgba(180,83,9,.07); --fc-mid:rgba(180,83,9,.18); }
.feat-card:nth-child(5) { --fc:#047857; --fc-bg:rgba(4,120,87,.07); --fc-mid:rgba(4,120,87,.18); }
.feat-card:nth-child(6) { --fc:#0e7490; --fc-bg:rgba(14,116,144,.07); --fc-mid:rgba(14,116,144,.18); }

.fn { font-family:'DM Mono',monospace; font-size:9px; font-weight:500; color:var(--faint); margin-bottom:22px; letter-spacing:1.5px; text-transform:uppercase; }
.fi {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--fc-bg); border: 1px solid var(--fc-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: transform .3s, box-shadow .3s;
}
.feat-card:hover .fi { transform: scale(1.1); box-shadow: 0 10px 28px var(--fc-mid); }
.ftit { font-family:'Bricolage Grotesque',sans-serif; font-size:17px; font-weight:700; color:var(--ink); margin-bottom:10px; letter-spacing:-.4px; line-height:1.2; }
.fdesc { font-size:13px; color:var(--muted); line-height:1.8; flex:1; }
.ftag {
  display:inline-flex; align-items:center; gap:5px; margin-top:18px;
  font-size:10px; padding:4px 10px; border-radius:100px; font-weight:700;
  background:var(--fc-bg); color:var(--fc); border:1px solid var(--fc-mid); width:fit-content;
}
.ftag::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--fc); }

/* ── DUERP SECTION ── */
.duerp { background: var(--ink2); position: relative; overflow: hidden; }
.duerp::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,195,140,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,195,140,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.duerp .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.duerp .eyebrow { color: var(--teal3); }
.duerp .eyebrow::before { background: var(--teal3); }
.duerp h2 { color: white; }
.duerp h2 .t { color: var(--teal3); }
.duerp .lead { color: rgba(255,255,255,.6); }

.duerp-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.duerp-features li {
  display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,.75); align-items: flex-start;
}
.duerp-ck {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-bg); border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--teal3); font-weight: 800; margin-top: 1px;
}
.duerp-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-teal-outline {
  padding: 13px 24px; border-radius: 9px;
  background: transparent; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.2);
  transition: all .18s; letter-spacing: -.1px;
}
.btn-teal-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color: white; }

.duerp-preview {
  position: relative; display: flex; gap: 16px; align-items: flex-start;
}
.duerp-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  transition: transform .5s, box-shadow .5s;
  flex: 1;
}
.duerp-card:hover { transform: translateY(-8px); box-shadow: 0 36px 80px rgba(0,0,0,.5); }
.duerp-card img { width: 100%; display: block; }
.duerp-card.secondary { margin-top: 32px; flex: .75; }

.duerp-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 18px;
  border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 16px var(--teal-glow);
  z-index: 5;
}

/* ── SCREENSHOT SECTIONS ── */
.ss { background: white; position: relative; }
.ss::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: .35;
}
.ss.alt { background: var(--bg2); }
.ss .wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: center; }
.ss .wrap.rev { grid-template-columns: 1.25fr 1fr; }
.ss .wrap.rev .ss-txt { order: 2; }
.ss .wrap.rev .ss-img { order: 1; }

.cklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cklist li { display: flex; gap: 12px; font-size: 14px; color: var(--ink3); line-height: 1.55; align-items: flex-start; }
.ck {
  width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-bg); border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--teal); font-weight: 800; margin-top: 1px;
}
.ss-img { position: relative; }
.img-glow { position: absolute; inset: -50px; z-index: -1; background: radial-gradient(ellipse at center, var(--teal-bg) 0%, transparent 70%); }
.img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-xl);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
  will-change: transform;
}
.img-wrap:hover { transform: translateY(-8px) rotate(-.25deg); box-shadow: 0 32px 72px rgba(0,0,0,.14); }
.img-wrap img { width: 100%; display: block; }

/* Progress bars */
.prog-bar { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.prog-item { display: flex; flex-direction: column; gap: 6px; }
.prog-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); font-weight: 600; }
.prog-track { height: 6px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--teal3)); width: 0; transition: width 1.3s cubic-bezier(.16,1,.3,1); }

/* ── COMPARISON ── */
.comparison { background: var(--bg); }
.comp-head { text-align: center; margin-bottom: 52px; }
.comp-head .lead { margin: 0 auto; text-align: center; }
.comp-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh); width: 100%; }
.comp-row { display: grid; grid-template-columns: 2.5fr 1fr 1fr; }
.comp-row + .comp-row { border-top: 1px solid var(--border); }
.cc { padding: 16px 26px; font-size: 13px; display: flex; align-items: center; background: white; }
.cc:nth-child(2) { border-left: 1px solid var(--border); background: #fafafa; justify-content: center; color: var(--muted); }
.cc:nth-child(3) { border-left: 1px solid rgba(0,122,94,.18); background: #f0faf7; justify-content: center; }
.comp-head-row .cc { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 14px 26px; }
.comp-head-row .cc:nth-child(2) { color: var(--faint); }
.comp-head-row .cc:nth-child(3) { color: var(--teal); }
.comp-row:hover .cc { background: #f6f7f8; }
.comp-row:hover .cc:nth-child(3) { background: #e4f5ef; }
.yes { color: var(--teal); font-weight: 800; font-size: 17px; }
.no { color: #ccc; font-size: 15px; }
.hl { color: var(--teal); font-weight: 700; }

/* ── PRICING ── */
.pricing { background: var(--bg2); }
.p-head { text-align: center; margin-bottom: 52px; }
.p-head .lead { margin: 0 auto; text-align: center; }
.p-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.pillar { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all .3s; }
.pillar:hover { border-color: var(--teal-mid); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.pillar-icon { font-size: 28px; margin-bottom: 14px; }
.pillar-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -.3px; }
.pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; }
.incl-col { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.incl-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 18px; }
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.incl-list li { font-size: 13px; color: var(--ink3); display: flex; gap: 9px; align-items: flex-start; }
.incl-list li::before { content:'✓'; color:var(--teal); font-weight:800; flex-shrink:0; font-size:11px; margin-top:2px; }
.incl-cta {
  background: linear-gradient(135deg, #edf8f4, #dff5ee);
  border: 1.5px solid rgba(0,122,94,.22); border-radius: var(--radius); padding: 30px;
}
.incl-cta-title { font-family:'Bricolage Grotesque',sans-serif; font-size:21px; font-weight:800; color:var(--ink); margin-bottom:10px; letter-spacing:-.5px; }
.incl-cta-sub { font-size:13px; color:var(--muted); line-height:1.7; }

/* RDV FORM */
.rdv-wrap {
  max-width: 840px; margin: 0 auto;
  background: white; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--sh-lg);
}
.rdv-top {
  padding: 30px 40px; background: linear-gradient(135deg, #edf8f4, #dff5ee);
  border-bottom: 1px solid rgba(0,122,94,.15);
}
.rdv-title { font-family:'Bricolage Grotesque',sans-serif; font-size:23px; font-weight:800; color:var(--ink); margin-bottom:7px; letter-spacing:-.5px; }
.rdv-sub { font-size:14px; color:var(--muted); line-height:1.65; }
.rdv-body { padding: 30px 40px; }
.rdv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rg { display: flex; flex-direction: column; gap: 6px; }
.rl { font-size: 12px; font-weight: 700; color: var(--ink3); }
.ri {
  background: white; border: 1.5px solid var(--border2);
  border-radius: 10px; padding: 11px 15px; font-size: 14px;
  color: var(--ink); font-family: 'Instrument Sans', sans-serif;
  transition: all .2s; width: 100%;
}
.ri:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-bg); }
.ri::placeholder { color: var(--faint); }
textarea.ri { resize: vertical; min-height: 80px; }
.rdv-btn {
  width: 100%; margin-top: 20px; padding: 16px;
  background: var(--teal); color: white; border: none;
  border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'Instrument Sans', sans-serif;
  box-shadow: 0 4px 18px var(--teal-glow); transition: all .2s;
}
.rdv-btn:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 10px 30px var(--teal-glow); }
.rdv-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.rdv-note { text-align: center; font-size: 12px; color: var(--faint); margin-top: 12px; }
.rdv-ok {
  display: none; margin-top: 16px; padding: 16px;
  background: #edf8f4; border: 1px solid rgba(0,122,94,.25);
  border-radius: 10px; color: var(--teal); font-size: 14px; font-weight: 600; text-align: center;
}

/* ── FAQ ── */
.faq-section { background: white; }
.faq-head { text-align: center; margin-bottom: 52px; }
.faq-head .lead { margin: 0 auto; text-align: center; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-cats {
  display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; justify-content: center;
}
.faq-cat {
  padding: 6px 18px; border-radius: 100px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--border); background: white; color: var(--muted);
  cursor: pointer; transition: all .15s; font-family: 'Instrument Sans', sans-serif;
}
.faq-cat:hover { border-color: var(--border2); color: var(--ink); }
.faq-cat.fon { background: var(--ink); color: white; border-color: transparent; }
.faq-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; cursor: pointer; transition: background .15s; gap: 18px; background: white;
}
.faq-q:hover { background: var(--bg2); }
.faq-q.fopen { background: var(--bg2); }
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.45; letter-spacing: -.2px; }
.faq-icon {
  width: 25px; height: 25px; border-radius: 50%; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--faint); flex-shrink: 0; transition: all .2s; line-height: 1;
}
.faq-q.fopen .faq-icon { background: var(--ink); border-color: transparent; color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 26px 22px; font-size: 13.5px; color: var(--muted); line-height: 1.8; }
.faq-a.fopen { display: block; }
.faq-a strong { color: var(--ink3); font-weight: 600; }
.faq-a p { margin-bottom: 8px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-atag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: var(--teal-bg); color: var(--teal); border: 1px solid var(--teal-mid); margin-top: 8px;
}
.faq-cta-box {
  margin-top: 40px; padding: 28px 32px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.faq-cta-t { font-family:'Bricolage Grotesque',sans-serif; font-size:19px; font-weight:800; color:var(--ink); letter-spacing:-.4px; margin-bottom:4px; }
.faq-cta-s { font-size: 13px; color: var(--muted); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, #003d2e 0%, #005c46 35%, #007a5e 70%, #009970 100%);
  padding: 72px 52px 64px; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px; animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift { 0%{background-position:0 0} 100%{background-position:52px 52px} }
.cta h2 { color: white; position: relative; z-index: 2; font-size: clamp(40px, 5vw, 68px); }
.cta h2 .g { color: rgba(255,255,255,.45); }
.cta .lead { color: rgba(255,255,255,.72); margin: 0 auto 48px; text-align: center; position: relative; z-index: 2; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px 6px 10px; border-radius: 100px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9);
  margin-bottom: 28px; position: relative; z-index: 2;
}
.cta-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #7fffd4; animation: blink 1.8s infinite; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; margin-bottom: 24px; }
.btn-w {
  padding: 16px 36px; border-radius: 10px; background: white; color: var(--teal);
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18); transition: all .2s;
}
.btn-w:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.22); }
.btn-wo {
  padding: 15px 28px; border-radius: 10px; background: transparent; color: white;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4); transition: all .2s;
}
.btn-wo:hover { background: rgba(255,255,255,.1); border-color: white; }
.cta-meta { font-size: 13px; color: rgba(255,255,255,.55); position: relative; z-index: 2; }
.cta-meta a { color: rgba(255,255,255,.78); text-decoration: none; }
.cta-meta a:hover { color: white; }
.cta-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2; margin-top: 40px;
  background: rgba(0,0,0,.18); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); max-width: 900px; margin-left: auto; margin-right: auto;
}
.cta-stat {
  flex: 1; min-width: 140px; padding: 22px 18px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1); transition: background .3s;
}
.cta-stat:last-child { border-right: none; }
.cta-stat:hover { background: rgba(255,255,255,.07); }
.cta-stat-val { font-family:'Bricolage Grotesque',sans-serif; font-size:42px; font-weight:800; color:white; line-height:1; letter-spacing:-1.5px; }
.cta-stat-unit { font-size:12px; color:rgba(255,255,255,.55); margin-top:3px; font-weight:500; }
.cta-stat-lbl { font-size:11px; color:rgba(255,255,255,.45); margin-top:7px; letter-spacing:.3px; }

/* ── FOOTER ── */
footer {
  background: var(--ink2); border-top: 1px solid rgba(255,255,255,.05);
  padding: 68px 52px 36px; color: white;
}
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
  max-width: 1200px; margin: 0 auto; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-brand { display: flex; flex-direction: column; gap: 16px; }
.ft-brand-row { display: flex; align-items: center; gap: 10px; }
.ft-name { font-family:'Bricolage Grotesque',sans-serif; font-size:18px; font-weight:800; color:white; }
.ft-tagline { font-size:13px; color:rgba(255,255,255,.4); line-height:1.75; max-width:240px; }
.ft-socials { display: flex; gap: 8px; margin-top: 4px; }
.ft-social {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; color: rgba(255,255,255,.5);
  transition: all .2s;
}
.ft-social:hover { background: var(--teal-bg); border-color: var(--teal-mid); color: var(--teal3); }
.ft-col-title { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:18px; }
.ft-links { display:flex; flex-direction:column; gap:11px; }
.ft-links a { font-size:13px; color:rgba(255,255,255,.48); text-decoration:none; transition:color .2s; display:flex; align-items:center; gap:7px; }
.ft-links a:hover { color:white; }
.ft-links a::before { content:''; width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.18); flex-shrink:0; transition:background .2s; }
.ft-links a:hover::before { background: var(--teal3); }
.ft-bottom {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:26px auto 0;
  font-size:12px; color:rgba(255,255,255,.2); flex-wrap:wrap; gap:12px;
}
.ft-iso { display:flex; gap:8px; flex-wrap:wrap; }
.ft-iso-badge {
  padding:3px 10px; border-radius:5px; border:1px solid rgba(255,255,255,.1);
  font-size:10px; font-weight:700; letter-spacing:.5px; color:rgba(255,255,255,.28);
}

/* ── DEMO INTERACTIVE ── */
.demo-section { background: var(--bg2); padding: 104px 52px; overflow: hidden; }
.demo-head { text-align: center; margin-bottom: 56px; }
.demo-head .lead { margin: 0 auto; text-align: center; }
.demo-tabs {
  display: flex; gap: 0; justify-content: center; margin-bottom: 40px;
  background: white; border: 1px solid var(--border); border-radius: 11px; padding: 4px;
  width: fit-content; margin-left: auto; margin-right: auto; box-shadow: var(--sh);
}
.demo-tab {
  display: flex; align-items: center; gap: 7px; padding: 9px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .18s;
  border: none; background: transparent; white-space: nowrap;
}
.demo-tab:hover { color: var(--ink); background: var(--bg2); }
.demo-tab.active { background: var(--ink); color: white; }
.demo-tab .tab-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.demo-tab.active .tab-dot { background: var(--teal3); }
.demo-tab:not(.active) .tab-dot { background: var(--faint); }
.demo-frame { max-width: 1040px; margin: 0 auto; position: relative; }
.demo-browser {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-xl);
}
.demo-browser-bar {
  background: #f2f2f0; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.demo-bdots { display: flex; gap: 5px; }
.demo-bd { width: 10px; height: 10px; border-radius: 50%; }
.demo-bd.r { background:#ff5f57; } .demo-bd.y { background:#febc2e; } .demo-bd.g { background:#28c840; }
.demo-burl {
  flex: 1; background: white; border: 1px solid var(--border); border-radius: 5px;
  padding: 5px 12px; font-size: 11px; color: var(--faint); font-family: 'DM Mono',monospace; margin: 0 12px;
}
.demo-screens { position: relative; min-height: 480px; background: #0f1117; }
.demo-screen { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; pointer-events: none; display: flex; flex-direction: column; }
.demo-screen.active { opacity: 1; pointer-events: auto; }
.app-shell { display: flex; height: 480px; overflow: hidden; }
.app-sidebar {
  width: 200px; flex-shrink: 0; background: #0f1117;
  border-right: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; flex-direction: column; gap: 2px;
}
.app-sidebar-logo {
  display: flex; align-items: center; gap: 8px; padding: 0 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 8px;
  font-family: 'Bricolage Grotesque',sans-serif; font-size: 13px; font-weight: 800; color: white;
}
.app-sidebar-logo-icon {
  width: 26px; height: 26px; border-radius: 6px; background: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; font-weight: 900;
}
.app-nav-item {
  display: flex; align-items: center; gap: 9px; padding: 8px 16px; margin: 0 8px;
  border-radius: 6px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.38); cursor: default; transition: all .15s;
}
.app-nav-item:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); }
.app-nav-item.act { background: rgba(255,255,255,.08); color: white; }
.app-nav-icon { font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }
.app-nav-badge { margin-left: auto; font-size: 10px; font-weight: 700; background: var(--red); color: white; border-radius: 9px; padding: 1px 6px; line-height: 1.5; }
.app-nav-badge.amber { background: var(--amber); }
.app-nav-badge.teal { background: var(--teal); }
.app-main { flex: 1; background: #f7f7f5; overflow: hidden; display: flex; flex-direction: column; }
.app-topbar { background: white; border-bottom: 1px solid var(--border); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.app-topbar-title { font-family:'Bricolage Grotesque',sans-serif; font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.app-topbar-right { display: flex; gap: 8px; align-items: center; }
.app-btn { padding: 6px 14px; border-radius: 6px; font-size: 11.5px; font-weight: 600; border: 1px solid var(--border); background: white; color: var(--ink3); cursor: default; }
.app-btn.primary { background: var(--ink); color: white; border-color: transparent; }
.app-btn.teal { background: var(--teal); color: white; border-color: transparent; }
.app-content { flex: 1; padding: 20px 24px; overflow: hidden; }
.app-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.app-kpi { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.app-kpi-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--faint); margin-bottom: 6px; }
.app-kpi-val { font-family:'Bricolage Grotesque',sans-serif; font-size: 24px; font-weight: 800; line-height: 1; letter-spacing: -1px; color: var(--ink); }
.app-kpi-val.red { color: var(--red); } .app-kpi-val.amber { color: var(--amber); } .app-kpi-val.teal { color: var(--teal); }
.app-kpi-sub { font-size: 10px; color: var(--faint); margin-top: 4px; }
.app-kpi-bar { height: 3px; border-radius: 2px; background: var(--border); margin-top: 8px; overflow: hidden; }
.app-kpi-fill { height: 100%; border-radius: 2px; }
.app-table-wrap { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.app-table-head { display: grid; padding: 10px 16px; background: var(--bg2); border-bottom: 1px solid var(--border); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--faint); }
.app-table-row { display: grid; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--ink3); align-items: center; transition: background .12s; }
.app-table-row:last-child { border-bottom: none; }
.app-table-row:hover { background: var(--bg2); }
.app-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.app-badge.red { background: var(--red-bg); color: var(--red); }
.app-badge.amber { background: var(--amber-bg); color: var(--amber); }
.app-badge.teal { background: var(--teal-bg); color: var(--teal); }
.app-badge.gray { background: var(--bg2); color: var(--faint); }
.app-form { display: flex; flex-direction: column; gap: 14px; }
.app-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-field { display: flex; flex-direction: column; gap: 5px; }
.app-label { font-size: 11px; font-weight: 600; color: var(--ink3); }
.app-input { padding: 8px 12px; border-radius: 7px; border: 1px solid var(--border2); font-size: 12px; color: var(--ink3); background: white; }
.app-select { padding: 8px 12px; border-radius: 7px; border: 1px solid var(--border2); font-size: 12px; color: var(--ink3); background: white; appearance: none; }
.app-steps { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.app-step { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--faint); }
.app-step.done .app-step-num { background: var(--teal); border-color: var(--teal); color: white; }
.app-step.act .app-step-num { border-color: var(--ink); color: var(--ink); }
.app-step-num { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; }
.app-step-line { flex: 1; height: 1px; background: var(--border); margin: 0 8px; min-width: 24px; }
.app-step.act { color: var(--ink); }
.app-ai-card { background: linear-gradient(135deg, #0f1117, #1a1f2e); border: 1px solid rgba(0,153,112,.25); border-radius: 10px; padding: 16px; margin-top: 12px; }
.app-ai-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 11px; font-weight: 700; color: var(--teal3); text-transform: uppercase; letter-spacing: 1px; }
.app-ai-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal3); animation: blink 2s infinite; }
.app-ai-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,.08); margin-bottom: 6px; }
.app-ai-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-bg); border: 1px solid var(--teal-mid); border-radius: 5px; padding: 4px 10px; font-size: 10px; font-weight: 700; color: var(--teal3); margin-top: 4px; margin-right: 6px; }
.app-checklist { display: flex; flex-direction: column; gap: 6px; }
.app-check-item { display: flex; align-items: center; gap: 10px; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: var(--ink3); transition: border-color .15s; }
.app-check-item:hover { border-color: var(--teal-mid); }
.app-check-box { width: 16px; height: 16px; border-radius: 4px; border: 1.5px solid var(--border2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.app-check-box.checked { background: var(--teal); border-color: var(--teal); color: white; }
.app-check-box.warn { background: var(--amber-bg); border-color: var(--amber); color: var(--amber); }
.app-check-score { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--faint); }
.app-ring-wrap { display: flex; align-items: center; gap: 20px; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; }
.app-ring-svg { flex-shrink: 0; }
.app-ring-info { flex: 1; }
.app-ring-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.app-ring-sub { font-size: 11px; color: var(--faint); }
.demo-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding: 0 4px; }
.demo-step-dots { display: flex; gap: 6px; }
.demo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border2); transition: all .25s; cursor: pointer; }
.demo-dot.active { background: var(--ink); width: 20px; border-radius: 3px; }
.demo-nav-btn { display: flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); background: white; cursor: pointer; transition: all .15s; color: var(--ink3); }
.demo-nav-btn:hover { border-color: var(--border2); background: var(--bg2); }
.demo-nav-btn.primary { background: var(--ink); color: white; border-color: transparent; }
.demo-nav-btn.primary:hover { background: #333; }
.demo-nav-btn:disabled { opacity: .35; pointer-events: none; }

@keyframes fadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:translateY(0)} }
