@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',system-ui,sans-serif;color:#3f3f46;-webkit-font-smoothing:antialiased;background:#fff}

/* NAV */
nav{display:flex;align-items:center;justify-content:space-between;padding:0 40px;height:64px;background:#fff;border-bottom:1px solid #f4f4f5;position:sticky;top:0;z-index:50;backdrop-filter:blur(12px);background:rgba(255,255,255,.85)}
nav .logo{font-size:20px;font-weight:800;color:#09090b;letter-spacing:-.4px;display:flex;align-items:center;gap:8px;cursor:pointer}
nav .logo img{height:28px;width:28px;object-fit:cover;border-radius:6px}
nav .logo span{display:none}
nav.dark-nav .logo{color:#fff}
nav.dark-nav .logo img{}
nav .links{display:flex;gap:32px}
nav .links a{font-size:13px;color:#71717a;text-decoration:none;font-weight:500;transition:color .15s}
nav .links a:hover{color:#09090b}
nav .actions{display:flex;gap:8px;align-items:center}
.btn-text{font-size:13px;color:#71717a;font-weight:500;background:none;border:none;cursor:pointer;padding:8px 12px;border-radius:8px}
.btn-text:hover{color:#09090b;background:#f4f4f5}
.btn-primary{font-size:13px;font-weight:600;color:#fff;background:#2563eb;border:none;padding:8px 20px;border-radius:8px;cursor:pointer;box-shadow:0 1px 3px rgba(37,99,235,.3),0 0 0 1px rgba(37,99,235,.1);transition:all .2s}
.btn-primary:hover{background:#1d4ed8;box-shadow:0 4px 12px rgba(37,99,235,.3),0 0 0 1px rgba(37,99,235,.2);transform:translateY(-1px)}
.btn-secondary{font-size:13px;font-weight:500;color:#3f3f46;background:#fff;border:1px solid #e4e4e7;padding:8px 20px;border-radius:8px;cursor:pointer;transition:all .15s}
.btn-secondary:hover{background:#fafafa;border-color:#a1a1aa}
.btn-white{font-size:14px;font-weight:600;color:#09090b;background:#fff;border:none;padding:12px 28px;border-radius:10px;cursor:pointer;box-shadow:0 1px 3px rgba(0,0,0,.1);transition:all .2s}
.btn-white:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}
.btn-hero{font-size:14px;font-weight:600;color:#fff;background:#2563eb;border:none;padding:12px 28px;border-radius:10px;cursor:pointer;box-shadow:0 1px 3px rgba(37,99,235,.4);transition:all .2s}
.btn-hero:hover{background:#1d4ed8;transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,99,235,.35)}
.btn-ghost-w{font-size:14px;font-weight:500;color:rgba(255,255,255,.7);background:none;border:1px solid rgba(255,255,255,.15);padding:12px 28px;border-radius:10px;cursor:pointer;transition:all .2s}
.btn-ghost-w:hover{color:#fff;border-color:rgba(255,255,255,.4);background:rgba(255,255,255,.05)}

/* HERO */
.hero{background:#09090b;color:#fff;padding:100px 40px 120px;text-align:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:800px;height:800px;background:radial-gradient(circle,rgba(37,99,235,.12) 0%,transparent 70%);pointer-events:none}
.hero-badge{display:inline-block;font-size:11px;font-weight:600;color:rgba(255,255,255,.5);border:1px solid rgba(255,255,255,.1);padding:4px 14px;border-radius:20px;margin-bottom:24px;letter-spacing:.3px}
.hero h1{font-size:clamp(36px,6vw,56px);font-weight:900;line-height:1.05;letter-spacing:-1.5px;max-width:680px;margin:0 auto 20px;background:linear-gradient(180deg,#fff 40%,rgba(255,255,255,.6));-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.hero p{font-size:clamp(15px,2vw,18px);color:rgba(255,255,255,.4);max-width:480px;margin:0 auto 40px;line-height:1.6}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.hero-proof{margin-top:48px;font-size:12px;color:rgba(255,255,255,.25);letter-spacing:.3px}

/* LOGOS */
.logos{padding:48px 40px;text-align:center;border-bottom:1px solid #f4f4f5}
.logos p{font-size:11px;font-weight:600;color:#a1a1aa;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:24px}
.logos-row{display:flex;justify-content:center;gap:48px;align-items:center;opacity:.3}
.logo-ph{width:80px;height:24px;background:#d4d4d8;border-radius:4px}

/* FEATURES */
.features{padding:96px 40px;max-width:1080px;margin:0 auto}
.features .label{font-size:11px;font-weight:700;color:#2563eb;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:12px}
.features h2{font-size:clamp(28px,4vw,40px);font-weight:800;color:#09090b;letter-spacing:-.8px;margin-bottom:16px;line-height:1.1}
.features>p{font-size:16px;color:#71717a;max-width:480px;margin-bottom:56px;line-height:1.6}
.f-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#e4e4e7;border:1px solid #e4e4e7;border-radius:16px;overflow:hidden}
.f-item{background:#fff;padding:40px 32px}
.f-item h3{font-size:15px;font-weight:700;color:#09090b;margin-bottom:8px}
.f-item p{font-size:13px;color:#71717a;line-height:1.6}
.f-item .marker{width:32px;height:3px;background:#e4e4e7;border-radius:2px;margin-bottom:20px}
.f-item:hover .marker{background:#2563eb;transition:.3s}

/* HOW IT WORKS */
.how{padding:96px 40px;background:#fafafa;border-top:1px solid #f4f4f5;border-bottom:1px solid #f4f4f5}
.how-inner{max-width:800px;margin:0 auto;text-align:center}
.how h2{font-size:clamp(28px,4vw,36px);font-weight:800;color:#09090b;letter-spacing:-.6px;margin-bottom:56px}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.step{text-align:center}
.step-n{width:40px;height:40px;border-radius:12px;background:#09090b;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:15px;margin:0 auto 16px}
.step h4{font-size:14px;font-weight:600;color:#09090b;margin-bottom:6px}
.step p{font-size:12px;color:#a1a1aa;line-height:1.5}

/* STATS */
.stats{padding:64px 40px;background:#09090b;color:#fff}
.stats-inner{max-width:800px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center}
.stat-n{font-size:36px;font-weight:900;letter-spacing:-.5px}
.stat-l{font-size:10px;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:1px;margin-top:4px}

/* TESTIMONIAL */
.testi{padding:96px 40px;text-align:center}
.testi-inner{max-width:560px;margin:0 auto}
.testi blockquote{font-size:20px;font-weight:600;color:#09090b;line-height:1.6;margin-bottom:24px;letter-spacing:-.2px}
.testi .who{font-size:13px;color:#a1a1aa}
.testi .who strong{color:#3f3f46;font-weight:600}
.testi-dots{margin-top:24px;display:flex;gap:6px;justify-content:center}
.testi-dots span{width:6px;height:6px;border-radius:50%;background:#d4d4d8}
.testi-dots span.on{background:#09090b}

/* CTA */
.cta{padding:96px 40px;text-align:center;background:#fafafa;border-top:1px solid #f4f4f5}
.cta h2{font-size:clamp(24px,4vw,36px);font-weight:800;color:#09090b;letter-spacing:-.6px;margin-bottom:12px}
.cta p{font-size:15px;color:#71717a;margin-bottom:32px}
.cta-actions{display:flex;gap:12px;justify-content:center}

/* FOOTER */
footer{background:#09090b;color:rgba(255,255,255,.35);padding:56px 40px 40px}
.footer-grid{display:grid;grid-template-columns:2fr repeat(4,1fr);gap:40px;max-width:1080px;margin:0 auto}
.footer-brand .logo{color:#fff;font-size:20px;font-weight:800;margin-bottom:8px;display:flex;align-items:center;gap:8px}
.footer-brand .logo img{height:24px;width:24px;object-fit:cover;border-radius:5px;}
.footer-brand .logo span{display:none}
.footer-brand p{font-size:12px;line-height:1.6}
.footer-col h4{color:rgba(255,255,255,.6);font-size:10px;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px;font-weight:600}
.footer-col a{display:block;font-size:12px;color:rgba(255,255,255,.3);text-decoration:none;padding:3px 0}
.footer-col a:hover{color:#fff}
.footer-bottom{text-align:center;margin-top:40px;padding-top:24px;border-top:1px solid rgba(255,255,255,.06);font-size:11px}

/* RESPONSIVE */
@media(max-width:768px){
  nav{padding:0 20px}
  nav .links{display:none}
  .hero{padding:64px 20px 80px}
  .f-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr)}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .features,.how,.testi,.cta{padding-left:20px;padding-right:20px}
  .app-shell{grid-template-columns:1fr}
  .side{display:none}
  .app-main{padding:20px}
  .stat-grid{grid-template-columns:1fr}
  .msg-wrap{grid-template-columns:1fr;height:auto}
  .msg-list{display:none}
  .kanban{flex-direction:column}
  .kcol{min-width:auto}
}

/* ===== DOCUMENTATION (sits outside UI previews) ===== */
.doc{max-width:1080px;margin:0 auto;padding:32px 40px}
.doc-title{font-size:24px;font-weight:800;color:#09090b;letter-spacing:-.5px;margin-bottom:4px}
.doc-subtitle{font-size:13px;color:#71717a;margin-bottom:24px}
.doc-p{font-size:13px;color:#71717a;margin:8px 0;line-height:1.6}
.doc-ul{padding-left:20px;margin:8px 0;font-size:13px;color:#71717a}
.doc-ul li{margin:3px 0}
h2.sec{font-size:11px;font-weight:700;color:#a1a1aa;text-transform:uppercase;letter-spacing:1px;margin:48px 0 16px;padding-top:24px;border-top:1px solid #f4f4f5}
.tbl{width:100%;border-collapse:collapse;margin:12px 0;font-size:12px}
.tbl th{background:#09090b;color:#fff;padding:8px 12px;text-align:left;font-weight:500}
.tbl td{padding:8px 12px;border-bottom:1px solid #f4f4f5;color:#52525b}
.tbl tr:hover td{background:#fafafa}
.callout{padding:12px 16px;margin:12px 0;border-radius:8px;font-size:12px;line-height:1.6}
.callout-warn{background:#fffbeb;color:#78350f}
.callout-danger{background:#fef2f2;color:#7f1d1d}
.callout-success{background:#ecfdf5;color:#065f46}
.callout-info{background:#fafafa;color:#52525b;border:1px solid #f4f4f5}
.tag{display:inline-block;padding:2px 7px;border-radius:4px;font-size:10px;font-weight:600;letter-spacing:.2px}
.tag-act{background:#dbeafe;color:#1e40af}
.tag-nav{background:#e0e7ff;color:#3730a3}
.tag-vis{background:#ecfdf5;color:#065f46}
.tag-inp{background:#fffbeb;color:#78350f}
.preview{margin:16px 0;border-radius:12px;overflow:hidden;border:1px solid #e4e4e7;box-shadow:0 1px 3px rgba(0,0,0,.06)}
.preview-label{display:none}
.preview-body{background:#fafafa}

/* ===== APP SHELL ===== */
.app-shell{display:grid;grid-template-columns:220px 1fr;min-height:calc(100vh - 56px);background:#fafafa}
.side{background:#fff;border-right:1px solid #f4f4f5;padding:12px 0;overflow-y:auto}
.side-label{padding:4px 20px;font-size:10px;font-weight:700;color:#a1a1aa;text-transform:uppercase;letter-spacing:.8px;margin-bottom:4px}
.side-item{padding:8px 14px;margin:1px 8px;font-size:13px;color:#71717a;cursor:pointer;border-radius:8px;font-weight:500;transition:all .15s}
.side-item:hover{background:#fafafa;color:#09090b}
.side-item.on{background:#f4f4f5;color:#09090b;font-weight:600}
.app-main{padding:24px 28px;overflow-y:auto}

/* App nav */
.app-nav{display:flex;align-items:center;justify-content:space-between;background:#fff;padding:0 24px;height:56px;border-bottom:1px solid #f4f4f5;position:sticky;top:0;z-index:50;backdrop-filter:blur(12px);background:rgba(255,255,255,.9)}
.app-nav .logo{font-size:20px;font-weight:800;color:#09090b;cursor:pointer;display:flex;align-items:center;gap:8px}
.app-nav .logo img{height:28px;width:28px;object-fit:cover;border-radius:6px}
.app-nav .logo span{display:none}
.app-nav-right{display:flex;align-items:center;gap:10px}
.ctx-switch{padding:0 28px 0 14px;height:36px;border:1px solid #e4e4e7;border-radius:8px;font-size:12px;background:#fff;color:#3f3f46;font-weight:500;cursor:pointer;font-family:inherit;appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a1a1aa'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;line-height:36px}
.ctx-switch:focus{outline:none;border-color:#a1a1aa;box-shadow:0 0 0 3px rgba(0,0,0,.03)}
.bell{position:relative;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid #e4e4e7;background:#fff;cursor:pointer;color:#71717a;transition:all .15s;flex-shrink:0}
.bell:hover{background:#fafafa;border-color:#a1a1aa}
.bell::before{content:'';width:12px;height:12px;border:2px solid currentColor;border-radius:50% 50% 0 0}
.bell-n{position:absolute;top:3px;right:3px;background:#ef4444;color:#fff;font-size:8px;width:14px;height:14px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700}
.avatar{width:36px;height:36px;border-radius:10px;background:#09090b;color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;cursor:pointer;transition:opacity .15s}
.avatar:hover{opacity:.85}
.avatar-lg{width:56px;height:56px;font-size:20px;border-radius:14px}
.avatar-sm{width:32px;height:32px;font-size:11px;border-radius:8px}

/* Stat cards */
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:24px}
.scard{background:#fff;border-radius:12px;padding:24px;border:1px solid #f4f4f5;transition:box-shadow .15s}
.scard:hover{box-shadow:0 4px 12px rgba(0,0,0,.04)}
.scard h4{font-size:10px;color:#a1a1aa;text-transform:uppercase;letter-spacing:.5px;margin-bottom:10px;font-weight:700}
.scard .num{font-size:32px;font-weight:900;color:#09090b;letter-spacing:-.5px;line-height:1}
.scard .sub{font-size:11px;color:#a1a1aa;margin-top:6px}

/* Cards */
.card{background:#fff;border-radius:12px;padding:24px;border:1px solid #f4f4f5;margin-bottom:12px}
.card h3{font-size:14px;font-weight:700;color:#09090b;margin-bottom:16px}

/* Experience items */
.xp{display:flex;align-items:flex-start;gap:14px;padding:20px;border:1px solid #f4f4f5;border-radius:12px;margin-bottom:8px;background:#fff}
.xp-dot{width:8px;height:8px;border-radius:50%;margin-top:5px;flex-shrink:0}
.xp-dot.ok{background:#10b981}
.xp-dot.pending{background:#f59e0b}
.xp-dot.fail{background:#ef4444}
.xp-info h4{font-size:13px;font-weight:600;color:#09090b}
.xp-info p{font-size:12px;color:#a1a1aa;margin-top:2px}
.badge{display:inline-block;padding:2px 8px;border-radius:10px;font-size:10px;font-weight:600}
.badge-g{background:#ecfdf5;color:#065f46}
.badge-y{background:#fffbeb;color:#78350f}
.badge-r{background:#fef2f2;color:#7f1d1d}

/* Job cards */
.jcard{padding:20px;border:1px solid #f4f4f5;border-radius:12px;margin-bottom:8px;background:#fff}
.jcard h4{font-size:13px;font-weight:600;color:#09090b}
.jcard .meta{font-size:12px;color:#a1a1aa;margin:4px 0}
.jcard-tags{display:flex;gap:6px;margin-top:8px}
.jtag{padding:3px 10px;background:#fafafa;border-radius:6px;font-size:11px;color:#52525b;border:1px solid #f4f4f5}
.btn-group{display:flex;gap:6px;margin-top:10px}

/* Profile */
.prof-head{display:flex;gap:20px;align-items:flex-start}
.prof-info h2{font-size:18px;font-weight:800;color:#09090b;letter-spacing:-.3px}
.prof-info p{font-size:13px;color:#a1a1aa}
.skills{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.skill{padding:4px 12px;background:#fafafa;color:#52525b;border-radius:6px;font-size:11px;font-weight:500;border:1px solid #f4f4f5}

/* Search + Filters */
.search{padding:0 16px;height:36px;border:1px solid #e4e4e7;border-radius:8px;width:100%;font-size:13px;outline:none;background:#fff;transition:all .15s;font-family:inherit;line-height:36px}
.search:focus{border-color:#a1a1aa;box-shadow:0 0 0 3px rgba(0,0,0,.03)}
.filters{display:flex;gap:8px;margin-bottom:16px;flex-wrap:wrap;align-items:center}
.sel{padding:8px 14px;border:1px solid #e4e4e7;border-radius:8px;font-size:12px;background:#fff;color:#52525b;font-family:inherit;cursor:pointer;appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a1a1aa'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;padding-right:28px}
.sel:focus{outline:none;border-color:#a1a1aa;box-shadow:0 0 0 3px rgba(0,0,0,.03)}

/* Messages */
.msg-wrap{display:grid;grid-template-columns:220px 1fr;border:1px solid #f4f4f5;border-radius:10px;overflow:hidden;height:320px;background:#fff}
.msg-list{border-right:1px solid #f4f4f5;overflow-y:auto}
.msg-item{padding:14px 16px;border-bottom:1px solid #f4f4f5;cursor:pointer}
.msg-item.on{background:#fafafa}
.msg-item h4{font-size:12px;font-weight:600;color:#09090b}
.msg-item p{font-size:11px;color:#a1a1aa;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.msg-chat{display:flex;flex-direction:column}
.msg-head{padding:14px 20px;border-bottom:1px solid #f4f4f5;font-weight:600;font-size:13px;color:#09090b}
.msg-body{flex:1;padding:16px;overflow-y:auto;display:flex;flex-direction:column;gap:8px}
.bub{max-width:70%;padding:10px 16px;border-radius:16px;font-size:12px;line-height:1.5}
.bub-in{background:#f4f4f5;align-self:flex-start}
.bub-out{background:#09090b;color:#fff;align-self:flex-end}
.msg-inp{display:flex;gap:8px;padding:12px 16px;border-top:1px solid #f4f4f5}
.msg-inp input{flex:1;padding:10px 14px;border:1px solid #e4e4e7;border-radius:10px;font-family:inherit;font-size:12px}

/* Notifications */
.notif{display:flex;align-items:flex-start;gap:12px;padding:14px 20px;border-bottom:1px solid #f4f4f5}
.notif:last-child{border-bottom:none}
.notif-dot{width:6px;height:6px;border-radius:50%;margin-top:6px;flex-shrink:0}
.notif-dot.new{background:#2563eb}
.notif-dot.old{background:#e4e4e7}
.notif-text{font-size:12px;color:#52525b}
.notif-time{font-size:11px;color:#a1a1aa}

/* Settings */
.set-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid #f4f4f5;font-size:13px}
.toggle{width:40px;height:22px;background:#e4e4e7;border-radius:11px;position:relative;cursor:pointer;transition:.2s}
.toggle.on{background:#09090b}
.toggle::after{content:'';width:18px;height:18px;background:#fff;border-radius:50%;position:absolute;top:2px;left:2px;transition:.2s;box-shadow:0 1px 2px rgba(0,0,0,.1)}
.toggle.on::after{left:20px}

/* Forms */
.fg{margin-bottom:16px}
.fg label{display:block;font-size:12px;font-weight:500;color:#52525b;margin-bottom:5px}
.inp{width:100%;padding:10px 14px;border:1px solid #e4e4e7;border-radius:8px;font-size:13px;background:#fff;transition:all .15s}
.inp:focus{outline:none;border-color:#a1a1aa;box-shadow:0 0 0 3px rgba(0,0,0,.03)}
.tarea{width:100%;padding:10px 14px;border:1px solid #e4e4e7;border-radius:8px;font-size:13px;min-height:80px;resize:vertical}
.radio-g{display:flex;flex-direction:column;gap:8px}
.radio{display:flex;align-items:center;gap:8px;font-size:13px;color:#52525b}
.chk{display:flex;align-items:center;gap:8px;font-size:12px;color:#71717a}
.divider{text-align:center;margin:20px 0;color:#a1a1aa;font-size:11px;font-weight:500;position:relative}
.divider::before,.divider::after{content:'';position:absolute;top:50%;width:40%;height:1px;background:#f4f4f5}
.divider::before{left:0}.divider::after{right:0}
.social-btn{width:100%;padding:10px;border:1px solid #e4e4e7;border-radius:8px;font-size:13px;background:#fff;cursor:pointer;margin-bottom:8px;text-align:center;font-weight:500;transition:all .15s}
.social-btn:hover{background:#fafafa;border-color:#a1a1aa}
.otp{display:flex;gap:8px;justify-content:center;margin:24px 0}
.otp input{width:44px;height:52px;text-align:center;font-size:22px;border:1px solid #e4e4e7;border-radius:10px;font-weight:700}
.otp input:focus{border-color:#09090b;outline:none;box-shadow:0 0 0 3px rgba(0,0,0,.04)}
.str{height:3px;border-radius:2px;margin-top:6px}
.str-w{background:#ef4444;width:33%}
.str-m{background:#f59e0b;width:66%}
.str-s{background:#10b981;width:100%}

/* Auth */
.auth{display:flex;justify-content:center;align-items:center;min-height:500px;background:#fafafa;padding:32px}
.auth-card{background:#fff;border-radius:16px;padding:40px;width:100%;max-width:400px;box-shadow:0 12px 32px rgba(0,0,0,.08);border:1px solid #f4f4f5}
.auth-card .logo{text-align:center;font-size:20px;font-weight:800;color:#09090b;margin-bottom:24px;display:flex;align-items:center;justify-content:center;gap:8px}
.auth-card .logo img{height:28px;width:28px;border-radius:6px}
.auth-card .logo span{display:none}
.auth-card h2{text-align:center;font-size:18px;font-weight:700;margin-bottom:24px;color:#09090b}
.auth-foot{text-align:center;margin-top:20px;font-size:12px;color:#a1a1aa}
.auth-foot a{color:#09090b;font-weight:500;text-decoration:none}

/* Pricing */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:900px;margin:0 auto}
.pcard{background:#fff;border-radius:16px;padding:32px;border:1px solid #f4f4f5;text-align:center}
.pcard.pop{border-color:#09090b;border-width:2px;position:relative}
.pcard.pop::before{content:'Recommended';position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:#09090b;color:#fff;padding:3px 14px;border-radius:10px;font-size:10px;font-weight:600}
.pcard h3{font-size:16px;font-weight:700;color:#09090b}
.pcard .price{font-size:42px;font-weight:900;color:#09090b;margin:16px 0;letter-spacing:-1px}
.pcard .price span{font-size:13px;font-weight:400;color:#a1a1aa}
.pcard .desc{font-size:12px;color:#a1a1aa;margin-bottom:20px}
.pcard-feat{text-align:left;margin:20px 0}
.pcard-feat li{font-size:12px;padding:4px 0;list-style:none;color:#71717a}
.pcard-feat li::before{content:'✓ ';color:#10b981;font-weight:700}

/* Kanban */
.kanban{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.kcol{min-width:160px;flex:1;background:#fff;border:1px solid #f4f4f5;border-radius:12px;padding:12px}
.kcol h4{font-size:10px;color:#a1a1aa;margin-bottom:8px;text-align:center;text-transform:uppercase;letter-spacing:.4px;font-weight:700}
.kcard{background:#fafafa;border:1px solid #f4f4f5;border-radius:8px;padding:12px;margin-bottom:6px}
.kcard .name{font-weight:600;font-size:12px;color:#09090b}
.kcard .info{color:#a1a1aa;font-size:10px}

/* Comparison */
.cmp{width:100%;border-collapse:collapse;font-size:12px;margin:16px 0}
.cmp th{padding:8px;background:#09090b;color:#fff;text-align:center;font-weight:500}
.cmp th:first-child{text-align:left}
.cmp td{padding:6px 8px;border-bottom:1px solid #f4f4f5;text-align:center;color:#52525b}
.cmp td:first-child{text-align:left;font-weight:500}

/* FAQ */
.faq-item{border-bottom:1px solid #f4f4f5}
.faq-q{padding:16px 0;font-size:14px;font-weight:500;cursor:pointer;display:flex;justify-content:space-between;align-items:center;color:#09090b}
.faq-q::after{content:'+';font-size:18px;color:#a1a1aa;font-weight:300}
.faq-q.open::after{content:'−'}
.faq-a{padding:0 0 16px;font-size:13px;color:#71717a;display:none;line-height:1.65}
.faq-a.show{display:block}

/* Dropdown */
.dd{position:relative;display:inline-block}
.dd-menu{position:absolute;top:calc(100% + 4px);right:0;background:#fff;border:1px solid #e4e4e7;border-radius:10px;box-shadow:0 12px 32px rgba(0,0,0,.08);min-width:180px;z-index:10;display:none}
.dd-menu.show{display:block}
.dd-menu a{display:block;padding:8px 16px;font-size:13px;color:#71717a;text-decoration:none}
.dd-menu a:hover{background:#fafafa;color:#09090b}

/* RESPONSIVE */
@media(max-width:768px){
  .app-shell{grid-template-columns:1fr}
  .side{display:none}
  .stat-grid{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:1fr}
  .doc{padding:24px 20px}
}

/* Notification popup */
.notif-popup{position:absolute;top:calc(100% + 8px);right:0;width:360px;background:#fff;border:1px solid #e4e4e7;border-radius:12px;box-shadow:0 12px 32px rgba(0,0,0,.1);z-index:100;max-height:400px;overflow-y:auto}
.notif-popup-head{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;border-bottom:1px solid #f4f4f5;position:sticky;top:0;background:#fff;border-radius:12px 12px 0 0}
.notif-popup-head strong{font-size:14px;color:#09090b}

/* Sidebar divider */
.side-divider{height:1px;background:#f4f4f5;margin:12px 20px}

/* Settings tiles */
.stile-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.stile{background:#fff;border-radius:12px;border:1px solid #f4f4f5;padding:0;position:relative;overflow:hidden;transition:box-shadow .15s}
.stile:hover{box-shadow:0 2px 8px rgba(0,0,0,.03)}
.stile-head{display:flex;justify-content:space-between;align-items:center;padding:16px 20px 12px}
.stile-head h3{font-size:13px;font-weight:700;color:#09090b;margin:0}
.stile-edit{width:28px;height:28px;display:flex;align-items:center;justify-content:center;border:1px solid #e4e4e7;border-radius:6px;background:#fff;cursor:pointer;color:#a1a1aa;transition:all .15s}
.stile-edit:hover{background:#fafafa;color:#09090b;border-color:#a1a1aa}
.stile-row{display:flex;justify-content:space-between;align-items:center;padding:10px 20px;border-top:1px solid #f4f4f5;font-size:13px}
.stile-label{color:#71717a;font-weight:500}
.stile-val{color:#09090b;font-weight:500;text-align:right}

/* Notification popup tabs */
.notif-tabs{display:flex;gap:0;border-bottom:1px solid #f4f4f5;padding:0 16px;position:sticky;top:48px;background:#fff;z-index:1}
.notif-tab{padding:10px 14px;font-size:12px;font-weight:500;color:#a1a1aa;cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px}
.notif-tab.on{color:#09090b;border-bottom-color:#09090b;font-weight:600}

/* Org tree */
.org-tree{display:flex;flex-direction:column;align-items:center;gap:0;padding:20px 0}
.org-label{font-size:10px;font-weight:700;color:#a1a1aa;text-transform:uppercase;letter-spacing:.8px;margin-bottom:12px}
.org-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:8px}
.org-connector{width:1px;height:28px;background:#e4e4e7;margin:0 auto}
.org-tile{background:#fff;border:1px solid #f4f4f5;border-radius:12px;padding:16px 20px;text-align:center;min-width:120px;transition:all .15s;cursor:pointer;position:relative}
.org-tile:hover{box-shadow:0 4px 12px rgba(0,0,0,.06);border-color:#e4e4e7}
.org-tile.me{border-color:#2563eb;border-width:2px;background:#f8faff}
.org-tile.dim{opacity:.7}
.org-tile.dim:hover{opacity:1}
.org-name{font-size:13px;font-weight:600;color:#09090b;margin-top:10px}
.org-role{font-size:11px;color:#a1a1aa;margin-top:2px}
.org-you{position:absolute;top:8px;right:8px;font-size:9px;font-weight:700;color:#2563eb;background:#eff6ff;padding:2px 6px;border-radius:4px}

/* Profile dropdown menu */
.profile-menu{position:absolute;top:calc(100% + 8px);right:0;width:240px;background:#fff;border:1px solid #e4e4e7;border-radius:12px;box-shadow:0 12px 32px rgba(0,0,0,.1);z-index:100;overflow:hidden}
.pm-header{display:flex;gap:10px;align-items:center;padding:14px 16px}
.pm-divider{height:1px;background:#f4f4f5}
.pm-item{padding:10px 16px;font-size:13px;color:#3f3f46;cursor:pointer;font-weight:500;transition:background .1s}
.pm-item:hover{background:#fafafa}

/* Employee tiles */
.emp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.emp-tile{background:#fff;border:1px solid #f4f4f5;border-radius:12px;padding:16px 20px 20px;text-align:center;transition:box-shadow .15s}
.emp-tile:hover{box-shadow:0 4px 12px rgba(0,0,0,.04)}
.emp-tile.ended{opacity:.65}
.emp-tile.ended:hover{opacity:.85}
.emp-tile .stile-edit{position:absolute;top:12px;left:12px}
.emp-name{font-size:14px;font-weight:700;color:#09090b}
.emp-pos{font-size:12px;color:#71717a;margin-top:2px}
.emp-details{margin-top:14px;text-align:left;border-top:1px solid #f4f4f5;padding-top:12px}
.emp-row{display:flex;justify-content:space-between;padding:3px 0;font-size:11px;color:#52525b}
.emp-label{color:#a1a1aa;font-weight:500}

/* Employee tile actions */
.emp-actions{position:absolute;top:12px;right:12px;display:flex;gap:4px}
.emp-more{position:relative}
.emp-menu{display:none;position:absolute;top:calc(100% + 4px);right:0;background:#fff;border:1px solid #e4e4e7;border-radius:10px;box-shadow:0 12px 32px rgba(0,0,0,.1);min-width:200px;z-index:50;overflow:hidden}
.emp-menu-item{padding:9px 16px;font-size:12px;color:#3f3f46;cursor:pointer;font-weight:500;transition:background .1s}
.emp-menu-item:hover{background:#fafafa}
.emp-menu-divider{height:1px;background:#f4f4f5}

/* Employee edit panel */
.emp-edit-wrap{position:relative}
.emp-edit-panel{position:absolute;top:calc(100% + 4px);right:0;background:#fff;border:1px solid #e4e4e7;border-radius:10px;box-shadow:0 12px 32px rgba(0,0,0,.1);width:240px;padding:16px;z-index:50}

/* Role tiles */
.role-tile{background:#fff;border:1px solid #f4f4f5;border-radius:12px;padding:16px 20px 24px;transition:box-shadow .15s}
.role-tile:hover{box-shadow:0 4px 12px rgba(0,0,0,.04)}

/* Role detail modal */
.role-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.4);z-index:200;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(4px)}
.role-modal-content{background:#fff;border-radius:16px;padding:32px;width:100%;max-width:480px;max-height:80vh;overflow-y:auto;box-shadow:0 24px 48px rgba(0,0,0,.15)}

/* Approval tiles */
.approval-tile{background:#fafafa;border:1px solid #f4f4f5;border-radius:10px;padding:14px;text-align:center}
.at-top{display:flex;justify-content:flex-end;margin-bottom:8px}
.at-name{font-size:13px;font-weight:600;color:#09090b}
.at-type{font-size:11px;font-weight:600;color:#2563eb;margin:4px 0}
.at-desc{font-size:11px;color:#71717a;line-height:1.4}

/* Calendar */
.cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.cal-head{font-size:10px;font-weight:600;color:#a1a1aa;text-align:center;padding:8px 0}
.cal-cell{border:2px solid transparent;border-radius:10px;padding:8px 4px;text-align:center;min-height:56px;position:relative;cursor:default;transition:all .15s}
.cal-cell.empty{border:none}
.cal-cell.weekend .cal-day{color:#a1a1aa}
.cal-cell.today{background:#09090b;border-color:#09090b}
.cal-cell.today .cal-day{color:#fff;font-weight:700}
.cal-cell.has-event{border-color:currentColor;cursor:pointer}
.cal-cell.has-event:hover{box-shadow:0 2px 8px rgba(0,0,0,.08)}
.cal-day{font-size:13px;font-weight:500;color:#09090b}
.cal-dots{display:flex;gap:3px;justify-content:center;margin-top:4px}
.cal-dot{width:5px;height:5px;border-radius:50%}
.cal-eye{position:absolute;top:4px;right:4px;color:#71717a;transition:opacity .15s;cursor:pointer}
.cal-popup{position:absolute;z-index:100}
.cal-popup-inner{background:#fff;border:1px solid #e4e4e7;border-radius:12px;box-shadow:0 12px 32px rgba(0,0,0,.12);padding:16px;width:300px}

/* Recruit tiles */
.recruit-tile{background:#fafafa;border:1px solid #f4f4f5;border-radius:8px;padding:12px;margin-bottom:6px;text-align:center;cursor:grab;transition:box-shadow .15s}
.recruit-tile:hover{box-shadow:0 2px 8px rgba(0,0,0,.06)}
.recruit-tile:active{cursor:grabbing;box-shadow:0 4px 16px rgba(0,0,0,.1);opacity:.9}

/* Modal overlay */
.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.4);z-index:200;display:flex;align-items:center;justify-content:center;backdrop-filter:blur(4px)}
.modal-content{background:#fff;border-radius:16px;padding:32px;width:100%;max-width:560px;max-height:85vh;overflow-y:auto;box-shadow:0 24px 48px rgba(0,0,0,.15)}
