@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ═══ TOKENS ═══ */
:root {
  --bg: #fafbff;
  --s1: #ffffff;
  --s2: #f4f6fb;
  --s3: #eaecf5;
  --s4: #dde0ee;
  --border: #e4e7f2;
  --border2: #cdd0e3;
  --text: #0d1117;
  --text2: #1a2035;
  --text3: #4a5270;
  --text4: #8b93b8;
  --blue: #3b5bdb;
  --blue-d: #2f4ac7;
  --blue-l: #eef2ff;
  --blue-l2: #e0e7ff;
  --green: #0ca678;
  --green-l: #e6fbf4;
  --orange: #f76707;
  --red: #e03131;
  --purple: #7048e8;
  --teal: #0891b2;
  --indigo: #4263eb;
  --sh1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh2: 0 4px 16px rgba(59,91,219,.08), 0 2px 4px rgba(0,0,0,.04);
  --sh3: 0 20px 48px rgba(59,91,219,.12), 0 8px 20px rgba(0,0,0,.07);
  --sh4: 0 32px 80px rgba(59,91,219,.15), 0 12px 32px rgba(0,0,0,.08);
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --sb: 256px;
}

body.dark {
  --bg: #070b14;
  --s1: #0d1421;
  --s2: #111827;
  --s3: #1c2436;
  --s4: #28344a;
  --border: #1e2d45;
  --border2: #2d3f5c;
  --text: #e8edf8;
  --text2: #c8d0e8;
  --text3: #7c8ab0;
  --text4: #4a5580;
  --blue-l: rgba(59,91,219,.12);
  --blue-l2: rgba(59,91,219,.2);
  --green-l: rgba(12,166,120,.1);
  --sh1: 0 1px 3px rgba(0,0,0,.4);
  --sh2: 0 4px 16px rgba(0,0,0,.5);
  --sh3: 0 20px 48px rgba(0,0,0,.6);
  --sh4: 0 32px 80px rgba(0,0,0,.7);
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .2s, color .2s;
  overflow: hidden;
}
input, textarea, select, button { font-family: var(--sans); }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text4); }
html { scroll-behavior: smooth; }

/* ═══ SCREENS ═══ */
.screen { display: none; width: 100%; height: 100%; position: relative; overflow: hidden; }
.screen.active { display: flex; }

/* ═══════════════════════════════════
   LANDING — TECH GRADIENT BACKGROUND
═══════════════════════════════════ */
#screen-land {
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(59,91,219,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 20%, rgba(112,72,232,.07) 0%, transparent 60%);
}
body.dark #screen-land {
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(59,91,219,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 80% 15%, rgba(112,72,232,.15) 0%, transparent 60%);
}

/* NAV */
.land-nav {
  position: sticky; top: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,251,255,.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(228,231,242,.7);
  flex-shrink: 0;
}
body.dark .land-nav {
  background: rgba(7,11,20,.88);
  border-bottom-color: rgba(30,45,69,.8);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; letter-spacing: -.5px;
  color: var(--text); text-decoration: none; cursor: pointer;
}

/* LOGO BARS */
.lbars { display: flex; gap: 3px; align-items: flex-end; height: 20px; }
.lbars span { display: block; width: 4px; border-radius: 2px; }
.lbars span:nth-child(1) { height: 10px; background: var(--blue); }
.lbars span:nth-child(2) { height: 18px; background: var(--green); animation: lb 2.2s .2s ease-in-out infinite alternate; }
.lbars span:nth-child(3) { height: 13px; background: var(--orange); animation: lb 2.2s .45s ease-in-out infinite alternate; }
.lbars span:nth-child(4) { height: 20px; background: var(--purple); animation: lb 2.2s .05s ease-in-out infinite alternate; }
.lbars.sm span { width: 3px; }
.lbars.sm span:nth-child(1) { height: 7px; }
.lbars.sm span:nth-child(2) { height: 13px; }
.lbars.sm span:nth-child(3) { height: 9px; }
.lbars.sm span:nth-child(4) { height: 15px; }
@keyframes lb { to { height: 35%; } }

.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--text3); background: transparent; border: none;
  cursor: pointer; text-decoration: none; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--text); background: var(--s2); }
.nav-ghost {
  padding: 8px 16px; background: transparent;
  border: 1px solid var(--border); border-radius: 9px;
  font-size: 14px; font-weight: 500; color: var(--text2);
  cursor: pointer; transition: all .15s;
}
.nav-ghost:hover { border-color: var(--border2); background: var(--s2); }
.nav-cta {
  padding: 9px 20px; background: var(--blue); color: #fff;
  border: none; border-radius: 9px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .18s;
  box-shadow: 0 2px 8px rgba(59,91,219,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.nav-cta:hover {
  background: var(--blue-d); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,91,219,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

/* HERO */
.hero {
  max-width: 1120px; margin: 0 auto;
  padding: 100px 48px 80px; text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(59,91,219,.1), rgba(112,72,232,.08));
  border: 1px solid rgba(59,91,219,.25);
  border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--blue);
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.75)} }

.hero-stat-row {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 28px;
  box-shadow: var(--sh1);
  backdrop-filter: blur(12px);
}
body.dark .hero-stat-row { background: rgba(13,20,33,.7); }
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.hs-num { font-size: 22px; font-weight: 900; font-family: var(--mono); color: var(--blue); line-height: 1; }
.hs-lbl { font-size: 11px; color: var(--text4); white-space: nowrap; }
.hero-stat-div { width: 1px; height: 36px; background: var(--border); }

h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900; line-height: 1.06; letter-spacing: -.04em;
  color: var(--text); margin-bottom: 24px;
}
h1 .hl {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 45%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 19px; color: var(--text3); line-height: 1.72;
  max-width: 640px; margin: 0 auto 52px; font-weight: 400;
}
.hero-br { display: block; }

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }
.btn-primary {
  display: flex; align-items: center; gap: 9px;
  padding: 15px 32px; background: var(--blue); color: #fff;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 16px rgba(59,91,219,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  background: var(--blue-d); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,91,219,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-outline {
  display: flex; align-items: center; gap: 9px;
  padding: 15px 28px; background: rgba(255,255,255,.9); color: var(--text2);
  border: 1px solid var(--border2); border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s; box-shadow: var(--sh1);
  backdrop-filter: blur(8px);
}
body.dark .btn-outline { background: rgba(13,20,33,.9); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); box-shadow: var(--sh2); }

/* HERO VISUAL — glassmorphism card */
.hero-visual {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(228,231,242,.9);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--sh4);
  max-width: 880px; margin: 0 auto;
  backdrop-filter: blur(20px);
}
body.dark .hero-visual {
  background: rgba(13,20,33,.85);
  border-color: rgba(30,45,69,.9);
}

.hv-topbar {
  background: var(--s2); border-bottom: 1px solid var(--border);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
}
.hv-dots { display: flex; gap: 6px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot:nth-child(1) { background: #ff5f57; }
.hv-dot:nth-child(2) { background: #febc2e; }
.hv-dot:nth-child(3) { background: #28c840; }
.hv-bar-title { font-size: 12px; font-weight: 600; color: var(--text4); flex: 1; text-align: center; font-family: var(--mono); }
.hv-live {
  font-size: 10px; font-weight: 700; color: var(--green); font-family: var(--mono);
  background: var(--green-l); padding: 3px 9px; border-radius: 100px;
  border: 1px solid rgba(12,166,120,.2); animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%,100%{opacity:1}50%{opacity:.6} }

.hv-body { padding: 20px; }
.hv-q {
  background: var(--blue); color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 12px 18px; font-size: 14px; font-weight: 500; line-height: 1.6;
  max-width: 70%; margin-left: auto; margin-bottom: 16px;
}
.hv-round-label {
  font-size: 11px; font-weight: 600; color: var(--text4);
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 12px; font-family: var(--mono);
  display: flex; align-items: center; gap: 6px;
}
.hv-round-label::before { content:''; flex:1; height:1px; background:var(--border); }
.hv-round-label::after { content:''; flex:1; height:1px; background:var(--border); }

.hv-models { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.hv-model {
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px;
  transition: border-color .2s;
}
.hv-mh { display: flex; align-items: center; gap: 7px; margin-bottom: 9px; }
.hv-mdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px currentColor; }
.hv-mname { font-size: 12px; font-weight: 700; }
.hv-ms { font-size: 9px; font-family: var(--mono); padding: 2px 7px; border-radius: 4px; margin-left: auto; font-weight: 700; }
.hv-ms.done { background: var(--green-l); color: var(--green); }
.hv-ms.run { background: var(--blue-l); color: var(--blue); }
.hv-mtext { font-size: 11px; color: var(--text3); line-height: 1.65; }
.hv-conv-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding: 10px 14px;
  background: var(--s2); border-radius: 10px;
}
.hv-conv-label { font-size: 11px; color: var(--text4); width: 48px; flex-shrink: 0; font-weight: 500; }
.hv-conv-track { flex: 1; height: 6px; background: var(--s3); border-radius: 6px; overflow: hidden; }
.hv-conv-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 8px rgba(12,166,120,.4);
}
.hv-conv-pct { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--green); }
.hv-conv-badge {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  background: var(--green-l); border: 1px solid rgba(12,166,120,.3);
  border-radius: 100px; color: var(--green); font-family: var(--mono);
}
.hv-consensus {
  background: linear-gradient(135deg, rgba(12,166,120,.08), rgba(59,91,219,.06));
  border: 1px solid rgba(12,166,120,.25);
  border-radius: 12px; padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.hv-cbadge {
  background: var(--green); color: #fff; font-size: 9px; font-weight: 800;
  padding: 4px 9px; border-radius: 5px; flex-shrink: 0;
  margin-top: 2px; letter-spacing: .8px; font-family: var(--mono);
}
.hv-ctext { font-size: 12px; color: var(--text2); line-height: 1.7; }
.hero-note { font-size: 12px; color: var(--text4); text-align: center; margin-top: 18px; }

/* SECTIONS */
.section { max-width: 1120px; margin: 0 auto; padding: 80px 48px; }
.sec-label { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -.03em; color: var(--text); margin-bottom: 14px; line-height: 1.12; }
.sec-sub { font-size: 17px; color: var(--text3); line-height: 1.7; max-width: 580px; }

/* WHY SECTION — dark bg */
.why-section {
  background: linear-gradient(135deg, #0d1117 0%, #111827 50%, #0d1117 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(59,91,219,.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(112,72,232,.1) 0%, transparent 70%);
}
.why-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.why-section .sec-label { color: #60a5fa; }
.why-section .sec-title { color: #f1f5f9; }
.why-desc { font-size: 15px; color: #94a3b8; line-height: 1.8; margin-top: 16px; }
.why-desc strong { color: #e2e8f0; }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why-point { display: flex; align-items: flex-start; gap: 14px; }
.wp-icon { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.wp-title { font-size: 15px; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.wp-desc { font-size: 13px; color: #94a3b8; }
.why-visual { display: flex; flex-direction: column; gap: 16px; }
.wv-arrow { text-align: center; font-size: 20px; color: #475569; }
.wv-card { border-radius: 16px; padding: 22px; }
.wv-bad { background: rgba(224,49,49,.08); border: 1px solid rgba(224,49,49,.2); }
.wv-good { background: rgba(12,166,120,.08); border: 1px solid rgba(12,166,120,.2); }
.wvc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.wvc-icon { font-size: 20px; }
.wvc-title { font-size: 15px; font-weight: 700; color: #e2e8f0; }
.wvc-items { display: flex; flex-direction: column; gap: 9px; }
.wvc-item { font-size: 13px; padding: 8px 12px; border-radius: 8px; line-height: 1.55; }
.wvc-item.red { background: rgba(224,49,49,.06); color: #fca5a5; border-left: 3px solid rgba(224,49,49,.5); }
.wvc-item.green { background: rgba(12,166,120,.06); color: #6ee7b7; border-left: 3px solid rgba(12,166,120,.5); }

/* STEPS — horizontal flow */
.steps-flow {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 52px; position: relative;
}
.steps-flow::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--teal));
  opacity: .3;
  z-index: 0;
}
.step-card {
  padding: 0 20px 28px; text-align: center;
  position: relative; z-index: 1;
}
.step-num-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px; font-weight: 700; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(59,91,219,.35);
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-t { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-d { font-size: 13px; color: var(--text3); line-height: 1.7; }

/* FEATURES */
.feats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.feat {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--sh1); transition: all .22s;
  position: relative; overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .22s;
}
.feat:hover { box-shadow: var(--sh2); transform: translateY(-3px); border-color: var(--border2); }
.feat:hover::before { opacity: 1; }
.feat.feat-blue::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.feat.feat-green::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.feat.feat-orange::before { background: linear-gradient(90deg, var(--orange), #e03131); }
.feat.feat-purple::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.feat.feat-teal::before { background: linear-gradient(90deg, var(--teal), var(--green)); }
.feat.feat-red::before { background: linear-gradient(90deg, #e03131, var(--orange)); }

.feat-icon-wrap {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-icon-wrap.blue { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.feat-icon-wrap.green { background: linear-gradient(135deg, var(--green), var(--teal)); }
.feat-icon-wrap.orange { background: linear-gradient(135deg, var(--orange), #e03131); }
.feat-icon-wrap.purple { background: linear-gradient(135deg, var(--purple), var(--indigo)); }
.feat-icon-wrap.teal { background: linear-gradient(135deg, var(--teal), var(--green)); }
.feat-icon-wrap.red { background: linear-gradient(135deg, #e03131, var(--orange)); }

.feat-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.feat-desc { font-size: 13px; color: var(--text3); line-height: 1.7; margin-bottom: 14px; }
.feat-tag {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--text4);
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px 10px;
}

/* COMPARISON TABLE */
.comp-section { background: var(--s1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.comp-table-wrap { margin-top: 44px; border-radius: 18px; border: 1px solid var(--border); box-shadow: var(--sh2); overflow: hidden; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comp-table thead { background: var(--s2); }
.comp-table th { padding: 14px 18px; font-weight: 700; color: var(--text3); text-align: left; border-bottom: 1px solid var(--border); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.comp-table th.th-pm { background: var(--blue-l); color: var(--blue); border-bottom-color: rgba(59,91,219,.2); }
.comp-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text3); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--s2); }
.comp-table td:first-child { font-weight: 500; color: var(--text2); }
.td-yes { color: var(--green); font-weight: 600; }
.td-half { color: var(--orange); font-weight: 500; }
.td-no { color: var(--text4); }

/* TESTIMONIALS */
.testis { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.testi {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  box-shadow: var(--sh1); transition: all .22s;
  position: relative;
}
.testi:hover { box-shadow: var(--sh2); transform: translateY(-2px); }
.testi-quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 48px; color: var(--border2); line-height: 1; font-family: Georgia, serif;
  user-select: none;
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text4); margin-top: 1px; }

/* PRICING */
.land-plans {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 52px; max-width: 960px; margin-left: auto; margin-right: auto;
}
.land-plan {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 20px; padding: 30px; display: flex; flex-direction: column;
  position: relative; box-shadow: var(--sh1); transition: all .22s;
}
.land-plan:hover { box-shadow: var(--sh2); transform: translateY(-2px); }
.land-plan.featured {
  border-color: var(--blue);
  background: linear-gradient(145deg, rgba(59,91,219,.06) 0%, var(--s1) 60%);
  box-shadow: 0 0 0 4px rgba(59,91,219,.08), var(--sh2);
}
.lp-top {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 18px; border-radius: 0 0 10px 10px; letter-spacing: .5px;
}
.lp-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.lp-price { font-size: 38px; font-weight: 900; font-family: var(--mono); color: var(--blue); margin-bottom: 6px; line-height: 1; }
.lp-price span { font-size: 14px; font-weight: 400; color: var(--text3); }
.lp-desc { font-size: 13px; color: var(--text3); margin-bottom: 22px; line-height: 1.6; }
.lp-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.lp-feats li { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.lp-feats li.ok { color: var(--text2); }
.lp-feats li.ok::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.lp-feats li.no { color: var(--text4); }
.lp-feats li.no::before { content: "✗"; color: var(--text4); flex-shrink: 0; }
.lp-btn {
  padding: 13px; background: var(--s3); border: 1px solid var(--border);
  border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--text3);
  cursor: pointer; transition: all .18s; text-align: center; width: 100%;
}
.land-plan.featured .lp-btn {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 12px rgba(59,91,219,.35);
}
.lp-btn:hover { transform: translateY(-1px); }
.land-plan:not(.featured) .lp-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.land-plan.featured .lp-btn:hover { background: var(--blue-d); box-shadow: 0 6px 18px rgba(59,91,219,.45); }
.pricing-note { text-align: center; font-size: 13px; color: var(--text4); margin-top: 24px; line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--s1); border-top: 1px solid var(--border); }
.faqs { display: flex; flex-direction: column; gap: 0; margin-top: 52px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq { border-bottom: 1px solid var(--border); cursor: pointer; transition: background .12s; }
.faq:last-child { border-bottom: none; }
.faq:hover { background: var(--s2); }
.faq-q { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 15px; font-weight: 600; color: var(--text); gap: 16px; }
.faq-arrow { font-size: 22px; color: var(--text4); flex-shrink: 0; transition: transform .2s; font-weight: 300; }
.faq.open .faq-arrow { transform: rotate(45deg); color: var(--blue); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 14px; color: var(--text3); line-height: 1.8; }
.faq.open .faq-a { display: block; }

/* CTA — deep blue gradient */
.land-cta {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f35 40%, #0d1b3e 70%, #0d1117 100%);
  padding: 110px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.land-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(59,91,219,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(112,72,232,.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b5bdb' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-in { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-eyebrow { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 14px; letter-spacing: 1px; }
.cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; margin-bottom: 18px; letter-spacing: -.03em; line-height: 1.08; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 44px; line-height: 1.7; }
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-btn {
  padding: 17px 48px; background: var(--blue); color: #fff;
  border: none; border-radius: 13px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 24px rgba(59,91,219,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.cta-btn:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(59,91,219,.6); }
.cta-hint { font-size: 13px; color: rgba(255,255,255,.35); }

/* FOOTER */
.land-footer {
  background: #070b14; border-top: 1px solid rgba(30,45,69,.8);
  padding: 32px 48px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.land-footer .logo { color: #94a3b8; }
.footer-links { display: flex; gap: 20px; }
.footer-links span { font-size: 13px; color: #4a5580; cursor: pointer; transition: color .15s; }
.footer-links span:hover { color: #94a3b8; }
.footer-links a { font-size: 13px; color: #4a5580; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #94a3b8; }
.footer-copy { font-size: 13px; color: #4a5580; }

/* ═══════════════════════════════════
   AUTH
═══════════════════════════════════ */
#screen-auth {
  align-items: center; justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59,91,219,.08) 0%, transparent 60%);
  overflow-y: auto;
}
body.dark #screen-auth {
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59,91,219,.18) 0%, transparent 60%);
}
.auth-wrap { width: 100%; max-width: 420px; padding: 24px; }
.auth-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--text3);
  background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 24px; transition: color .15s;
}
.auth-back:hover { color: var(--blue); }
.auth-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 22px; padding: 40px; box-shadow: var(--sh3);
}
.auth-logo { display: flex; align-items: center; gap: 9px; justify-content: center; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.auth-tagline { text-align: center; font-size: 13px; color: var(--text4); margin-bottom: 30px; }
.auth-tabs {
  display: flex; background: var(--s2); border: 1px solid var(--border);
  border-radius: 11px; padding: 3px; gap: 3px; margin-bottom: 26px;
}
.auth-tab {
  flex: 1; padding: 10px; border: none; background: transparent;
  border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--text3);
  cursor: pointer; transition: all .15s;
}
.auth-tab.active {
  background: var(--s1); color: var(--text);
  box-shadow: var(--sh1);
}
.auth-form { display: none; flex-direction: column; gap: 16px; }
.auth-form.active { display: flex; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: .6px; }
.field input {
  padding: 12px 14px; background: var(--s2);
  border: 1.5px solid var(--border); border-radius: 11px;
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,91,219,.1); }
.field input::placeholder { color: var(--text4); }
.auth-err {
  font-size: 12px; color: var(--red);
  background: rgba(224,49,49,.07); border: 1px solid rgba(224,49,49,.15);
  border-radius: 9px; padding: 10px 14px; display: none; line-height: 1.5;
}
.auth-err.show { display: block; }
.auth-btn {
  padding: 13px; background: var(--blue); color: #fff;
  border: none; border-radius: 11px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .18s; margin-top: 2px;
  box-shadow: 0 4px 12px rgba(59,91,219,.3);
}
.auth-btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(59,91,219,.4); }
.auth-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.auth-hint { text-align: center; font-size: 13px; color: var(--text3); }
.auth-hint span { color: var(--blue); cursor: pointer; font-weight: 600; }

/* ═══════════════════════════════════
   APP SHELL
═══════════════════════════════════ */
#screen-app { overflow: hidden; }
.sb-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 99;
  display: none; backdrop-filter: blur(3px);
}
.sb-overlay.show { display: block; }

.sidebar {
  width: var(--sb); flex-shrink: 0; height: 100%;
  background: var(--s1); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: width .22s ease; overflow: hidden; z-index: 10;
}
.sidebar.collapsed { width: 0; border-right-color: transparent; }
.sb-top { padding: 16px 14px 12px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.sb-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; white-space: nowrap; color: var(--text); }
.sb-btn {
  width: 28px; height: 28px; border: 1px solid var(--border);
  background: transparent; border-radius: 8px; color: var(--text3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0;
}
.sb-btn:hover { border-color: var(--border2); color: var(--text); }
.new-btn {
  margin: 0 10px 12px;
  padding: 10px 14px; background: var(--blue); color: #fff;
  border: none; border-radius: 10px; font-size: 13px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  transition: all .15s; box-shadow: 0 2px 8px rgba(59,91,219,.25);
}
.new-btn:hover { background: var(--blue-d); }
.sb-search {
  margin: 0 10px 10px;
  display: flex; align-items: center; gap: 8px;
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 9px; padding: 8px 11px;
}
.sb-search svg { color: var(--text4); flex-shrink: 0; }
.sb-search input { flex: 1; background: transparent; border: none; outline: none; font-size: 13px; color: var(--text); }
.sb-search input::placeholder { color: var(--text4); }
.sb-grp { padding: 6px 14px 4px; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--text4); }
.hist-list { flex: 1; overflow-y: auto; padding: 2px 8px 8px; display: flex; flex-direction: column; gap: 1px; }
.hi { padding: 9px 10px; border-radius: 9px; cursor: pointer; transition: background .12s; display: flex; align-items: flex-start; gap: 8px; position: relative; }
.hi:hover { background: var(--s2); }
.hi.active { background: var(--blue-l); }
.hi.active .hi-title { color: var(--blue); font-weight: 600; }
.hi-ico { font-size: 11px; flex-shrink: 0; margin-top: 2px; color: var(--text4); }
.hi-c { flex: 1; min-width: 0; }
.hi-title { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text2); }
.hi-meta { font-size: 11px; color: var(--text4); margin-top: 1px; }
.hi-del { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: var(--s3); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 12px; color: var(--text4); }
.hi:hover .hi-del { display: flex; }
.hi-del:hover { border-color: var(--red); color: var(--red); background: rgba(224,49,49,.06); }
.sb-bottom { padding: 10px; border-top: 1px solid var(--border); flex-shrink: 0; }
.user-chip { padding: 9px 10px; border-radius: 11px; display: flex; align-items: center; gap: 9px; cursor: pointer; transition: background .12s; }
.user-chip:hover { background: var(--s2); }
.u-ava { width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.u-info { flex: 1; min-width: 0; }
.u-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.u-email { font-size: 11px; color: var(--text4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-area { flex: 1; min-width: 0; display: flex; flex-direction: column; overflow: hidden; }
.topbar {
  height: 56px; flex-shrink: 0; padding: 0 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,251,255,.95); backdrop-filter: blur(12px);
  transition: background .2s;
}
body.dark .topbar { background: rgba(7,11,20,.95); }
.tb-l { display: flex; align-items: center; gap: 10px; }
.tb-r { display: flex; align-items: center; gap: 5px; }
.sess-title { font-size: 14px; font-weight: 600; color: var(--text); max-width: 260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mpills { display: flex; gap: 4px; flex-wrap: wrap; }
.mpill { padding: 3px 9px; border-radius: 100px; border: 1px solid; font-size: 11px; font-weight: 600; font-family: var(--mono); white-space: nowrap; }
.ibtn { width: 34px; height: 34px; border: 1px solid var(--border); background: var(--s1); border-radius: 8px; color: var(--text3); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s; flex-shrink: 0; }
.ibtn:hover { border-color: var(--border2); color: var(--text); box-shadow: var(--sh1); }
.ibtn.key-btn { border-color: rgba(59,91,219,.4); color: var(--blue); background: var(--blue-l); }
.ibtn.key-btn:hover { background: var(--blue-l2); }
.lang-sw { display: flex; gap: 1px; background: var(--s2); border: 1px solid var(--border); border-radius: 8px; padding: 2px; }
.lang-btn { padding: 4px 9px; border: none; background: transparent; border-radius: 6px; font-size: 11px; font-weight: 700; color: var(--text4); cursor: pointer; transition: all .14s; }
.lang-btn.active { background: var(--s1); color: var(--blue); box-shadow: var(--sh1); }
.lang-btn:hover:not(.active) { color: var(--text); }

/* PAGES */
.page { display: none; flex: 1; overflow: hidden; flex-direction: column; }
.page.active { display: flex; }

/* CHAT */
.chat-wrap { flex: 1; overflow-y: auto; padding: 24px 0; display: flex; flex-direction: column; }
.empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; gap: 16px; text-align: center; }
.es-icon { font-size: 52px; margin-bottom: 4px; }
.es-title { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.es-sub { font-size: 14px; color: var(--text3); max-width: 500px; line-height: 1.72; }
.es-chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 10px; margin-top: 14px; width: 100%; max-width: 680px; }
.es-chip { padding: 14px 18px; background: var(--s1); border: 1px solid var(--border); border-radius: 13px; font-size: 13px; color: var(--text2); cursor: pointer; transition: all .18s; text-align: left; font-weight: 500; box-shadow: var(--sh1); }
.es-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 4px 14px rgba(59,91,219,.15); transform: translateY(-2px); }
#msgs { display: flex; flex-direction: column; gap: 20px; padding: 0 24px; max-width: 1000px; width: 100%; margin: 0 auto; }
.user-msg { display: flex; justify-content: flex-end; }
.user-bubble { max-width: 72%; background: linear-gradient(135deg, var(--blue), var(--indigo)); color: #fff; border-radius: 18px 18px 4px 18px; padding: 13px 17px; font-size: 14px; line-height: 1.65; font-weight: 500; box-shadow: 0 4px 12px rgba(59,91,219,.3); }
.ctx-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--green-l); border: 1px solid rgba(12,166,120,.2); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--green); align-self: flex-start; margin-bottom: 4px; }
.sess-block { display: flex; flex-direction: column; gap: 10px; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ROUND BLOCKS */
.rb { background: var(--s1); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--sh1); }
.rb-head { padding: 11px 15px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--border); background: var(--s2); }
.rb-num { font-family: var(--mono); font-size: 10px; font-weight: 700; padding: 3px 9px; background: var(--s3); border: 1px solid var(--border); border-radius: 5px; color: var(--text4); }
.rb-label { font-size: 12px; color: var(--text3); flex: 1; font-weight: 500; }
.rb-st { font-family: var(--mono); font-size: 10px; padding: 3px 9px; border-radius: 5px; border: 1px solid; font-weight: 600; }
.rbs-run { border-color: rgba(59,91,219,.4); color: var(--blue); background: var(--blue-l); }
.rbs-conv { border-color: rgba(12,166,120,.4); color: var(--green); background: var(--green-l); }
.rbs-div { border-color: rgba(247,103,7,.4); color: var(--orange); background: rgba(247,103,7,.07); }
.rbs-done { border-color: var(--border); color: var(--text4); background: var(--s3); }
.cmeter { padding: 9px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.cm-l { font-size: 11px; color: var(--text4); width: 52px; flex-shrink: 0; font-weight: 500; }
.cm-track { flex: 1; height: 5px; background: var(--s3); border-radius: 5px; overflow: hidden; }
.cm-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width .7s ease; }
.cm-pct { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--green); width: 36px; text-align: right; flex-shrink: 0; }
.ag { display: grid; gap: 1px; background: var(--border); }
.ac { background: var(--s1); padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.ac-tag { display: flex; align-items: center; gap: 7px; }
.ac-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ac-name { font-size: 12px; font-weight: 700; }
.ac-badge { font-family: var(--mono); font-size: 9px; padding: 2px 7px; border-radius: 4px; border: 1px solid var(--border); color: var(--text4); margin-left: auto; font-weight: 600; }
.ac-badge.run { border-color: rgba(59,91,219,.4); color: var(--blue); background: var(--blue-l); }
.ac-badge.done { border-color: rgba(12,166,120,.4); color: var(--green); background: var(--green-l); }
.ac-badge.err { border-color: rgba(224,49,49,.4); color: var(--red); background: rgba(224,49,49,.06); }
.ac-txt { font-size: 13px; line-height: 1.74; color: var(--text3); min-height: 36px; white-space: pre-wrap; }
.tcur { display: inline-block; width: 2px; height: 13px; background: var(--blue); animation: blink .72s step-end infinite; vertical-align: middle; border-radius: 1px; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }

/* Structured response sections */
.ac-section-label { font-size: 10px; font-weight: 700; color: var(--text4); text-transform: uppercase; letter-spacing: .8px; margin-top: 6px; margin-bottom: 3px; font-family: var(--mono); }
.ac-disagree-block { background: rgba(247,103,7,.06); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; padding: 8px 12px; font-size: 12px; color: var(--text3); line-height: 1.6; margin: 4px 0; }
.ac-agree-block { background: var(--green-l); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 8px 12px; font-size: 12px; color: var(--text3); line-height: 1.6; margin: 4px 0; }

.div-blk { margin: 0 12px 12px; background: rgba(247,103,7,.05); border: 1px solid rgba(247,103,7,.2); border-radius: 11px; padding: 12px 14px; }
.db-head { font-size: 11px; color: var(--orange); margin-bottom: 8px; font-weight: 700; font-family: var(--mono); }
.db-items { display: flex; flex-direction: column; gap: 6px; }
.db-item { display: flex; gap: 7px; font-size: 12px; color: var(--text3); line-height: 1.55; align-items: flex-start; }
.db-tag { font-size: 10px; padding: 2px 7px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; margin-top: 1px; font-weight: 600; }
.dt-hi { background: rgba(224,49,49,.1); color: var(--red); }
.dt-med { background: rgba(247,103,7,.1); color: var(--orange); }
.dt-lo { background: var(--green-l); color: var(--green); }

.rb-toggle { padding: 9px 15px; display: flex; align-items: center; gap: 7px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text4); cursor: pointer; user-select: none; transition: color .12s; font-weight: 500; }
.rb-toggle:hover { color: var(--text3); }
.rbt-arrow { transition: transform .2s; flex-shrink: 0; }

/* CONSENSUS BLOCK */
.cblock {
  border: 1px solid rgba(12,166,120,.3); border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, rgba(12,166,120,.04), var(--s1));
  box-shadow: 0 0 0 4px rgba(12,166,120,.04), var(--sh1);
  animation: fadeUp .4s ease;
}
.cb-head { padding: 14px 20px; border-bottom: 1px solid rgba(12,166,120,.12); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cb-badge { background: linear-gradient(135deg, var(--green), var(--teal)); color: #fff; font-family: var(--mono); font-size: 10px; font-weight: 800; padding: 4px 11px; border-radius: 6px; letter-spacing: 1px; }
.cb-meta { font-size: 11px; color: var(--text4); flex: 1; }
.cb-algo { font-size: 10px; padding: 3px 9px; border: 1px solid rgba(12,166,120,.3); border-radius: 5px; color: var(--green); font-weight: 600; }
.cb-body { padding: 20px; font-size: 14px; line-height: 1.88; color: var(--text); font-weight: 400; }
.cb-foot { padding: 10px 20px 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cbf-chip { padding: 4px 10px; background: var(--s2); border: 1px solid var(--border); border-radius: 5px; font-size: 11px; color: var(--text4); font-weight: 500; }
.cb-actions { padding: 0 20px 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.cb-action-btn { padding: 8px 16px; background: var(--s1); border: 1px solid var(--border); border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--text3); cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 6px; box-shadow: var(--sh1); }
.cb-action-btn:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--sh2); }
.cb-action-btn.share:hover { border-color: var(--green); color: var(--green); }

/* CONVERGENCE CHART */
.conv-chart { padding: 12px 20px 18px; border-top: 1px solid var(--border); }
.cc-title { font-size: 11px; color: var(--text4); margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; font-family: var(--mono); }
.cc-svg { width: 100%; height: 72px; }

/* DISAGREEMENT NOT RESOLVED notice */
.no-consensus-block {
  border: 1px solid rgba(247,103,7,.3); border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, rgba(247,103,7,.04), var(--s1));
  padding: 20px;
}
.ncb-title { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ncb-body { font-size: 13px; color: var(--text3); line-height: 1.7; margin-bottom: 14px; }
.ncb-models { display: flex; flex-direction: column; gap: 10px; }
.ncb-model { background: var(--s2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.ncb-model-name { font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.ncb-model-pos { font-size: 12px; color: var(--text3); line-height: 1.6; }

/* INPUT */
.input-area { flex-shrink: 0; border-top: 1px solid var(--border); padding: 14px 24px 18px; background: var(--s1); }
.imr { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; min-height: 26px; }
.imr-chip { display: flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 100px; border: 1px solid var(--border); font-size: 11px; color: var(--text3); background: var(--s2); font-weight: 500; }
.imrc-dot { width: 6px; height: 6px; border-radius: 50%; }
.input-box { display: flex; gap: 10px; align-items: flex-end; max-width: 1000px; margin: 0 auto; }
textarea#qi { flex: 1; background: var(--s2); border: 1.5px solid var(--border); border-radius: 13px; padding: 13px 16px; font-size: 14px; color: var(--text); outline: none; resize: none; line-height: 1.55; max-height: 160px; transition: border-color .18s, box-shadow .18s; }
textarea#qi:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,91,219,.1); }
textarea#qi::placeholder { color: var(--text4); }
textarea#qi:disabled { opacity: .5; }
.send-btn { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--indigo)); border: none; border-radius: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .18s; box-shadow: 0 4px 12px rgba(59,91,219,.35); }
.send-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(59,91,219,.45); }
.send-btn:disabled { background: var(--s3); cursor: not-allowed; transform: none; box-shadow: none; }
.input-hint { font-size: 12px; color: var(--text4); margin-top: 8px; text-align: center; }
.limit-bar { background: rgba(224,49,49,.06); border-bottom: 1px solid rgba(224,49,49,.12); padding: 10px 20px; font-size: 13px; color: var(--red); display: none; align-items: center; gap: 12px; flex-shrink: 0; font-weight: 500; }
.limit-bar.show { display: flex; }
.lk { font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }

/* PROFILE PAGE */
.profile-wrap { flex: 1; overflow-y: auto; padding: 28px 32px; max-width: 840px; width: 100%; margin: 0 auto; }
.back-btn { display: flex; align-items: center; gap: 6px; background: transparent; border: 1px solid var(--border); border-radius: 9px; padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text3); cursor: pointer; transition: all .15s; margin-bottom: 26px; }
.back-btn:hover { border-color: var(--border2); color: var(--text); }
.profile-hero { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.big-ava { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 25px; font-weight: 800; color: #fff; flex-shrink: 0; box-shadow: 0 4px 14px rgba(59,91,219,.3); }
.ph-name { font-size: 22px; font-weight: 800; color: var(--text); }
.ph-email { font-size: 13px; color: var(--text4); margin-top: 3px; }
.ph-plan { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.plan-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 5px; }
.pb-free { background: var(--s3); color: var(--text4); border: 1px solid var(--border); }
.pb-pro { background: var(--blue-l); color: var(--blue); border: 1px solid rgba(59,91,219,.3); }
.ptabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.ptab { padding: 10px 16px; background: transparent; border: none; font-size: 14px; font-weight: 500; color: var(--text3); cursor: pointer; transition: all .15s; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.ptab:hover { color: var(--text); }
.ptab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }
.ptab-c { display: none; } .ptab-c.active { display: block; }
.sec-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.stitle { font-size: 17px; font-weight: 700; color: var(--text); }
.ssub { font-size: 13px; color: var(--text4); margin-top: 3px; }
.add-btn { padding: 9px 16px; background: var(--s1); border: 1px solid var(--border2); border-radius: 9px; font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; transition: all .15s; white-space: nowrap; flex-shrink: 0; box-shadow: var(--sh1); }
.add-btn:hover { border-color: var(--blue); color: var(--blue); }
.priv-note { display: flex; align-items: center; gap: 10px; background: var(--green-l); border: 1px solid rgba(12,166,120,.2); border-radius: 11px; padding: 12px 16px; font-size: 13px; color: var(--text3); margin-bottom: 20px; }
.mcl { display: flex; flex-direction: column; gap: 8px; }
.mcl-grp { font-size: 11px; font-weight: 600; color: var(--text4); letter-spacing: .8px; text-transform: uppercase; padding: 14px 0 6px; border-top: 1px solid var(--border); margin-top: 4px; }
.mcl-grp:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.mcr { background: var(--s1); border: 1px solid var(--border); border-radius: 13px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; transition: all .15s; flex-wrap: wrap; box-shadow: var(--sh1); }
.mcr:hover { border-color: var(--border2); }
.mcr.cfg { border-color: rgba(12,166,120,.3); background: linear-gradient(145deg, rgba(12,166,120,.03), var(--s1)); }
.mcr-l { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.mcr-ava { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.mcr-info { flex: 1; min-width: 0; }
.mcr-name { font-size: 13px; font-weight: 700; color: var(--text); }
.mcr-prov { font-size: 11px; color: var(--text4); margin-top: 1px; }
.mcr-r { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.kfw { position: relative; }
.ki { background: var(--s2); border: 1.5px solid var(--border); border-radius: 9px; padding: 8px 32px 8px 11px; font-family: var(--mono); font-size: 12px; color: var(--text); outline: none; width: 190px; transition: border-color .15s; }
.ki:focus { border-color: var(--blue); }
.ki::placeholder { color: var(--text4); }
.key-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text4); font-size: 12px; padding: 2px; }
.key-eye:hover { color: var(--text3); }
.ksave { padding: 7px 13px; background: var(--s1); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--text2); cursor: pointer; transition: all .15s; white-space: nowrap; }
.ksave:hover { border-color: var(--blue); color: var(--blue); }
.kclear { width: 29px; height: 29px; background: transparent; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text4); cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center; }
.kclear:hover { border-color: var(--red); color: var(--red); background: rgba(224,49,49,.06); }
.kstatus { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.kstatus.ok { background: var(--green); box-shadow: 0 0 6px rgba(12,166,120,.5); }
.kstatus.no { background: var(--border2); }
.use-tog { padding: 5px 10px; border-radius: 7px; border: 1px solid var(--border); font-size: 11px; color: var(--text4); background: transparent; cursor: pointer; transition: all .15s; white-space: nowrap; font-weight: 500; }
.use-tog.on { border-color: rgba(12,166,120,.4); color: var(--green); background: var(--green-l); }

/* Lang in profile */
.lang-setting { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.lang-choice { padding: 8px 16px; border-radius: 9px; border: 1.5px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text3); background: transparent; cursor: pointer; transition: all .15s; }
.lang-choice.active { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.lang-choice:hover:not(.active) { border-color: var(--border2); color: var(--text); }

.acc-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.save-acc { padding: 12px 26px; background: var(--blue); color: #fff; border: none; border-radius: 11px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s; box-shadow: 0 2px 8px rgba(59,91,219,.25); }
.save-acc:hover { background: var(--blue-d); }
.danger-zone { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.dz-l { font-size: 12px; color: var(--text4); font-weight: 500; margin-right: 4px; }
.dbtn { padding: 9px 16px; background: transparent; border: 1px solid var(--border); border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--text3); cursor: pointer; transition: all .15s; }
.dbtn:hover { border-color: var(--border2); color: var(--text); }
.dbtn.red { border-color: rgba(224,49,49,.3); color: var(--red); }
.dbtn.red:hover { background: rgba(224,49,49,.06); }
.pref-rows { display: flex; flex-direction: column; margin-bottom: 24px; }
.pref-row { display: flex; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.pref-row:last-child { border-bottom: none; }
.pref-info { flex: 1; }
.pref-lbl { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.pref-sub { font-size: 12px; color: var(--text4); line-height: 1.5; }
.pref-ctl { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
input[type=range] { accent-color: var(--blue); width: 100px; cursor: pointer; }
.rv { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--blue); width: 44px; text-align: right; }
.toggle { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.toggle input { opacity: 0; width: 0; height: 0; }
.ttrack { position: absolute; inset: 0; background: var(--s3); border: 1px solid var(--border); border-radius: 12px; transition: all .2s; }
.ttrack::after { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--border2); transition: all .2s; }
.toggle input:checked + .ttrack { background: var(--blue); border-color: var(--blue); }
.toggle input:checked + .ttrack::after { transform: translateX(20px); background: #fff; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 12px; margin-bottom: 28px; }
.stat-card { background: var(--s1); border: 1px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; box-shadow: var(--sh1); }
.sc-val { font-size: 30px; font-weight: 800; font-family: var(--mono); margin-bottom: 4px; }
.sc-lbl { font-size: 12px; color: var(--text4); font-weight: 500; }
.msl-row { background: var(--s1); border: 1px solid var(--border); border-radius: 11px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.msl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.msl-name { font-size: 14px; font-weight: 600; flex: 1; color: var(--text); }
.msl-val { font-size: 14px; font-weight: 700; font-family: var(--mono); }

/* UPGRADE */
.upgrade-wrap { flex: 1; overflow-y: auto; padding: 32px; display: flex; flex-direction: column; align-items: center; }
.ug-title { font-size: 32px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; text-align: center; color: var(--text); }
.ug-sub { font-size: 15px; color: var(--text3); margin-bottom: 40px; text-align: center; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 16px; width: 100%; max-width: 880px; margin-bottom: 32px; }
.plan-card { background: var(--s1); border: 1px solid var(--border); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; position: relative; box-shadow: var(--sh2); transition: all .22s; }
.plan-card:hover { transform: translateY(-2px); box-shadow: var(--sh3); }
.plan-card.featured { border-color: var(--blue); background: linear-gradient(145deg, var(--blue-l), var(--s1)); }
.plan-top { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 18px; border-radius: 0 0 10px 10px; letter-spacing: .5px; }
.plan-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.plan-price { font-size: 36px; font-weight: 900; font-family: var(--mono); color: var(--blue); margin-bottom: 6px; line-height: 1; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text3); }
.plan-desc { font-size: 13px; color: var(--text3); margin-bottom: 24px; line-height: 1.6; }
.plan-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text2); line-height: 1.5; }
.plan-btn { padding: 13px; background: var(--s3); border: 1px solid var(--border); border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--text3); cursor: pointer; transition: all .18s; text-align: center; width: 100%; }
.plan-card.featured .plan-btn { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 12px rgba(59,91,219,.35); }
.plan-btn:hover { transform: translateY(-1px); }
.plan-card.featured .plan-btn:hover { background: var(--blue-d); box-shadow: 0 6px 18px rgba(59,91,219,.45); }
.plan-card:not(.featured) .plan-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.plan-current { padding: 13px; background: var(--green-l); border: 1px solid rgba(12,166,120,.3); border-radius: 11px; font-size: 14px; font-weight: 600; color: var(--green); text-align: center; }
.payment-section { width: 100%; max-width: 880px; margin-bottom: 32px; }
.pay-title { font-size: 14px; font-weight: 600; color: var(--text3); margin-bottom: 14px; text-align: center; }
.pay-methods { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 10px; }
.pay-method { background: var(--s1); border: 1px solid var(--border); border-radius: 13px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all .15s; box-shadow: var(--sh1); }
.pay-method:hover { border-color: var(--border2); box-shadow: var(--sh2); transform: translateY(-1px); }
.pay-icon { font-size: 24px; flex-shrink: 0; }
.pay-name { font-size: 13px; font-weight: 700; color: var(--text); }
.pay-sub { font-size: 11px; color: var(--text4); }

/* MODALS */
.modal-ov { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.5); display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.modal-ov.open { display: flex; }
.modal-box { background: var(--s1); border: 1px solid var(--border); border-radius: 20px; padding: 30px 34px; width: 520px; max-width: calc(100vw - 32px); display: flex; flex-direction: column; gap: 16px; box-shadow: var(--sh4); max-height: 90vh; overflow-y: auto; animation: modalIn .2s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-title { font-size: 19px; font-weight: 800; color: var(--text); }
.modal-btns { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.mcancel { padding: 10px 18px; background: transparent; border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--text3); cursor: pointer; transition: all .15s; }
.mcancel:hover { border-color: var(--border2); color: var(--text); }
.msave { padding: 10px 22px; background: var(--blue); border: none; border-radius: 10px; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; transition: all .15s; }
.msave:hover { background: var(--blue-d); }
.qmcfg-list { display: flex; flex-direction: column; gap: 8px; max-height: 55vh; overflow-y: auto; }
.qmcfg-row { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--s2); border: 1px solid var(--border); border-radius: 11px; flex-wrap: wrap; transition: border-color .15s; }
.qmcfg-row:hover { border-color: var(--border2); }
.qmcfg-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.qmcfg-info { flex: 1; min-width: 80px; }
.qmcfg-name { font-size: 13px; font-weight: 700; color: var(--text); }
.qmcfg-prov { font-size: 11px; color: var(--text4); }
.qmcfg-key { flex: 2; min-width: 140px; background: var(--s1); border: 1.5px solid var(--border); border-radius: 9px; padding: 8px 11px; font-family: var(--mono); font-size: 12px; color: var(--text); outline: none; transition: border-color .15s; }
.qmcfg-key:focus { border-color: var(--blue); }
.qmcfg-key::placeholder { color: var(--text4); }
.qmcfg-save { padding: 8px 14px; background: var(--blue); border: none; border-radius: 9px; font-size: 12px; font-weight: 600; color: #fff; cursor: pointer; white-space: nowrap; transition: all .15s; box-shadow: 0 2px 6px rgba(59,91,219,.25); }
.qmcfg-save:hover { background: var(--blue-d); }
.qmcfg-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.upg-modal { text-align: center; }
.upg-modal .um-icon { font-size: 40px; margin-bottom: 10px; }
.upg-modal .um-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.upg-modal .um-sub { font-size: 14px; color: var(--text3); line-height: 1.65; margin-bottom: 22px; }
.upg-modal .um-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; text-align: left; }
.upg-modal .um-feat { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text3); }
.upg-btn { padding: 14px; background: var(--blue); color: #fff; border: none; border-radius: 11px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .18s; width: 100%; }
.upg-btn:hover { background: var(--blue-d); }
.upg-later { font-size: 13px; color: var(--text4); text-align: center; cursor: pointer; margin-top: 6px; }
.upg-later:hover { color: var(--text3); }
.share-url-box { display: flex; gap: 8px; align-items: center; }
.share-url-box input { flex: 1; background: var(--s2); border: 1px solid var(--border); border-radius: 9px; padding: 10px 13px; font-family: var(--mono); font-size: 12px; color: var(--text3); outline: none; }
.copy-btn { padding: 10px 16px; background: var(--s1); border: 1px solid var(--border); border-radius: 9px; font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; transition: all .15s; white-space: nowrap; }
.copy-btn:hover { border-color: var(--green); color: var(--green); }

/* TOAST */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: #111827; color: #f1f5f9; border-radius: 11px; padding: 12px 22px; font-size: 13px; font-weight: 500; z-index: 9999; opacity: 0; transition: all .25s ease; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,.3); pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.ok { background: var(--green); color: #fff; }
.toast.err { background: var(--red); color: #fff; }

/* SHIMMER */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* SHARE */
#screen-share { flex-direction: column; overflow-y: auto; background: var(--bg); }
.share-wrap { max-width: 1000px; width: 100%; padding: 32px 24px; margin: 0 auto; }
.share-banner { background: var(--s1); border: 1px solid var(--border); border-radius: 15px; padding: 16px 22px; display: flex; align-items: center; gap: 16px; margin-bottom: 28px; box-shadow: var(--sh1); }
.share-brand { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; color: var(--text); flex-shrink: 0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .feats { grid-template-columns: repeat(2,1fr); }
  .steps-flow { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .steps-flow::before { display: none; }
  .testis { grid-template-columns: 1fr; }
  .land-plans { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 740px) {
  .land-nav, .hero, .section, .land-cta, .land-footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 56px; padding-bottom: 48px; }
  .hv-models { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stat-row { gap: 14px; padding: 8px 18px; }
  .hero-br { display: none; }
  .feats { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .why-section { padding: 56px 0; }
  .sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 100; transition: transform .22s ease; }
  .sidebar.collapsed { transform: translateX(-100%); width: var(--sb); }
  .profile-wrap { padding: 20px 16px; }
  #msgs { padding: 0 14px; }
  .ag { grid-template-columns: 1fr !important; }
  .modal-box { padding: 22px 18px; }
  .plans-grid, .pay-methods { grid-template-columns: 1fr; }
  .upgrade-wrap { padding: 20px 16px; }
  .comp-table { font-size: 11px; }
  .comp-table th, .comp-table td { padding: 10px 10px; }
  .footer-links { gap: 12px; }
  .nav-link { display: none; }
  .tb-r .mpills { display: none; }
}
