:root{

  --primary:#7c3aed;
  --secondary:#06b6d4;

  --bg:#ffff;
  --card:#111827;

  --border:rgba(255,255,255,.08);

  --text:#0b1120;;
  --muted:#9ca3af;

  --gradient:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
    );

  --transition:.35s ease;
}

/* =========================================================
RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{

  font-family:"DM Sans",sans-serif;

  background:
    radial-gradient(
      circle at top left,
      rgba(124,58,237,.16),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(6,182,212,.12),
      transparent 30%
    ),
    var(--bg);

  color:var(--text);

  display:flex;
}

/* =========================================================
SIDEBAR
========================================================= */

.sidebar{

  width:260px;
  min-height:100vh;

  background:rgba(15,23,42,.94);

  border-right:1px solid var(--border);

  padding:30px 22px;

  position:fixed;

  left:0;
  top:0;

  backdrop-filter:blur(20px);

  z-index:1000;
}

.sidebar-brand{

  display:flex;
  align-items:center;

  gap:14px;

  margin-bottom:50px;
}

.brand-icon{

  width:52px;
  height:52px;

  border-radius:18px;

  background:var(--gradient);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
  font-weight:800;
}

.brand-text{

  font-size:28px;

  font-family:"Syne",sans-serif;

  font-weight:800;
}

.sidebar-nav ul{

  list-style:none;

  display:flex;
  flex-direction:column;

  gap:10px;
}

.sidebar-nav li a{

  display:flex;
  align-items:center;

  gap:14px;

  padding:15px 18px;

  border-radius:18px;

  text-decoration:none;

  color:var(--muted);

  transition:var(--transition);
}

.sidebar-nav li a:hover,
.sidebar-nav .active a{

  background:rgba(124,58,237,.18);

  color:white;

  transform:translateX(4px);
}

/* =========================================================
NAVBAR
========================================================= */

.navbar{

  position:fixed;

  top:0;
  left:260px;
  right:0;

  height:90px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 40px;

  background:rgba(11,17,32,.72);

  backdrop-filter:blur(20px);

  border-bottom:1px solid var(--border);

  z-index:999;
}

.logo{

  font-size:30px;

  font-family:"Syne",sans-serif;

  font-weight:800;

  background:var(--gradient);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.search-bar{

  width:340px;

  display:flex;
  align-items:center;

  gap:14px;

  padding:14px 18px;

  border-radius:18px;

  background:rgba(255,255,255,.05);

  border:1px solid var(--border);
}

.search-bar i{
  color:var(--muted);
}

.search-bar input{

  flex:1;

  border:none;
  outline:none;

  background:transparent;

  color:white;

  font-size:15px;
}

.search-bar input::placeholder{
  color:var(--muted);
}

/* =========================================================
MAIN
========================================================= */

.main-home{

  margin-left:260px;

  width:calc(100% - 260px);

  padding:130px 40px 80px;
}

/* =========================================================
HERO
========================================================= */

.hero-section{

  text-align:center;

  margin-bottom:80px;
}

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:12px 18px;

  border-radius:999px;

  background:rgba(124,58,237,.16);

  color:#c4b5fd;

  font-size:14px;
  font-weight:700;

  margin-bottom:24px;
}

.hero-section h1{

  font-size:clamp(48px,8vw,84px);

  line-height:1;

  margin-bottom:24px;

  font-family:"Syne",sans-serif;

  font-weight:800;
}

.hero-section h1 span{

  background:var(--gradient);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-section p{

  max-width:760px;

  margin:auto;

  color:var(--muted);

  line-height:1.9;

  font-size:18px;
}

/* =========================================================
SECTION
========================================================= */

.component-section{

  margin-bottom:90px;
}

.section-title{

  margin-bottom:38px;
}

.section-title span{

  color:#c4b5fd;

  text-transform:uppercase;

  letter-spacing:1px;

  font-size:14px;

  font-weight:700;
}

.section-title h2{

  margin-top:10px;

  font-size:40px;

  font-family:"Syne",sans-serif;
}

/* =========================================================
TEAM GRID
========================================================= */

.team-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:28px;
}

.team-card{

  position:relative;

  background:rgba(255,255,255,.04);
  

  border:1px solid var(--border);

  border-radius:28px;

  padding:34px;

  text-align:center;

  overflow:hidden;

  transition:var(--transition);

  backdrop-filter:blur(18px);
}

.team-card:hover{

  transform:translateY(-10px);

  border-color:rgba(124,58,237,.4);

  box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.status-dot{

  position:absolute;

  top:24px;
  right:24px;

  width:14px;
  height:14px;

  border-radius:50%;
}

.online{
  background:#22c55e;
}

.busy{
  background:#f59e0b;
}

.offline{
  background:#6b7280;
}

.team-card img{

  width:100px;
  height:100px;

  border-radius:50%;

  object-fit:cover;

  border:4px solid rgba(255,255,255,.08);

  margin-bottom:20px;
}

.team-card h3{

  font-size:24px;

  margin-bottom:10px;

  font-family:"Syne",sans-serif;
  color: #7c3aed;
}

.team-card p{

  color:blue;

  margin-bottom:24px;
}

.team-stats{

  display:flex;
  justify-content:center;

  gap:14px;

  flex-wrap:wrap;

  margin-bottom:26px;
}

.team-stats span{

  padding:10px 14px;

  border-radius:999px;

  background:rgba(255,255,255,.06);

  color:black;

  font-size:13px;
}

.team-card button{

  width:100%;

  padding:14px;

  border:none;

  border-radius:16px;

  background:var(--gradient);

  color:purple;

  font-weight:700;

  cursor:pointer;

  transition:var(--transition);
}

.team-card button:hover{

  transform:translateY(-3px);
}

/* =========================================================
ACTIVITY FEED
========================================================= */

.activity-feed{

  display:flex;
  flex-direction:column;

  gap:20px;
}

.activity-item{

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  padding:24px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid var(--border);

  transition:var(--transition);
}

.activity-item:hover{

  transform:translateY(-4px);

  border-color:rgba(6,182,212,.4);
}

.activity-icon{

  min-width:60px;
  height:60px;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(34,197,94,.18);

  color:#22c55e;

  font-size:22px;
}


.team-kpis{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.kpi-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(20px);
  border-radius:24px;
  padding:24px;
  display:flex;
  align-items:center;
  gap:16px;
}

.kpi-card i{
  font-size:1.8rem;
}

.kanban-board{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:30px;
}

.kanban-column{
  background:#111827;
  border-radius:24px;
  padding:20px;
}

.kanban-task{
  background:#1f2937;
  padding:14px;
  border-radius:14px;
  margin-top:12px;
}

.video-room-card,
.ai-assistant,
.docs-panel,
.leaderboard{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:24px;
  backdrop-filter:blur(20px);
}

.meeting-live{
  color:#22c55e;
  font-weight:700;
  margin-bottom:10px;
}

.activity-icon.purple{

  background:rgba(124,58,237,.18);

  color:#a78bfa;
}

.activity-icon.pink{

  background:rgba(236,72,153,.18);

  color:#f472b6;
}

.activity-content{

  flex:1;
}

.activity-content h4{

  font-size:20px;

  margin-bottom:6px;
}

.activity-content p{

  color:var(--muted);

  line-height:1.7;
}

.activity-item span{

  color:#c4b5fd;

  font-size:14px;
}

/* =========================================================
TASK GRID
========================================================= */

.task-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:28px;
}

.task-card{

  background:rgba(255,255,255,.04);

  border:1px solid var(--border);

  border-radius:28px;

  padding:32px;

  transition:var(--transition);
}

.task-card:hover{

  transform:translateY(-8px);

  border-color:rgba(124,58,237,.4);
}

.task-top{

  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:22px;
}

.task-tag{

  padding:10px 14px;

  border-radius:999px;

  background:rgba(124,58,237,.16);

  color:#c4b5fd;

  font-size:13px;
  font-weight:700;
}

.task-priority{

  padding:8px 12px;

  border-radius:999px;

  font-size:12px;
  font-weight:700;
}

.high{

  background:rgba(239,68,68,.18);

  color:#f87171;
}

.medium{

  background:rgba(234,179,8,.18);

  color:#facc15;
}

.task-card h3{

  font-size:26px;

  margin-bottom:16px;

  font-family:"Syne",sans-serif;
}

.task-card p{

  color:var(--muted);

  line-height:1.8;

  margin-bottom:28px;
}

.task-members{

  display:flex;
  align-items:center;
}

.task-members img{

  width:42px;
  height:42px;

  border-radius:50%;

  object-fit:cover;

  border:3px solid var(--bg);

  margin-left:-10px;
}

.task-members img:first-child{
  margin-left:0;
}

/* =========================================================
CHAT PREVIEW
========================================================= */

.chat-preview{

  display:flex;
  flex-direction:column;

  gap:24px;
}

.message{

  display:flex;

  gap:18px;
}

.message img{

  width:52px;
  height:52px;

  border-radius:50%;

  object-fit:cover;
}

.message-box{

  max-width:520px;

  padding:20px 24px;

  border-radius:22px;

  background:rgba(255,255,255,.05);

  border:1px solid var(--border);
}

.message-box h4{

  margin-bottom:8px;

  font-size:16px;
}

.message-box p{

  color:#d1d5db;

  line-height:1.7;
}

.sent{

  justify-content:flex-end;
}

.sent .message-box{

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.22),
      rgba(6,182,212,.16)
    );
}
.presence-board{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.presence-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:24px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.avatar-wrapper{
  position:relative;
}

.avatar-wrapper img{
  width:60px;
  height:60px;
  border-radius:50%;
}

.status{
  position:absolute;
  bottom:2px;
  right:2px;
  width:14px;
  height:14px;
  border-radius:50%;
  border:3px solid white;
}

.online{background:#22c55e;}
.meeting{background:#f59e0b;}
.sprint-card{
  background:white;
  border-radius:28px;
  padding:28px;
  border:1px solid #eee;
}

.sprint-header{
  display:flex;
  justify-content:space-between;
}

.progress-track{
  height:14px;
  margin:20px 0;
  border-radius:999px;
  background:#f3f4f6;
}

.progress-fill{
  width:72%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #06b6d4
  );
}
.goals-card{
  background:white;
  border-radius:28px;
  padding:30px;
  border:1px solid #eee;
}

.goal{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid #f3f4f6;
}
.meeting-card{
  background:white;
  border-radius:28px;
  padding:30px;
  border:1px solid #eee;
}

.meeting-item{
  display:flex;
  gap:20px;
  padding:20px 0;
}

.meeting-item span{
  font-weight:700;
  color:#8b5cf6;
}
.workload-card{
  background:white;
  padding:30px;
  border-radius:28px;
  border:1px solid #eee;
}

.workload-grid{
  display:grid;
  grid-template-columns:repeat(6,40px);
  gap:12px;
  margin-top:20px;
}

.workload-grid div{
  width:40px;
  height:40px;
  border-radius:10px;
}

.low{
  background:#dcfce7;
}

.medium{
  background:#fde68a;
}

.high{
  background:#fca5a5;
}
.achievement-wall{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.achievement{
  padding:18px 24px;
  border-radius:20px;

  background:
  linear-gradient(
    135deg,
    #fef3c7,
    #fde68a
  );

  font-weight:600;
}
.footer {
  position: relative;
  margin-left: 240px;
  padding: 72px 40px 24px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(6, 8, 22, 0.2), rgba(6, 8, 22, 0.96));
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(123, 97, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 61, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%, rgba(255, 255, 255, 0.03) 66%, transparent 88%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  margin-bottom: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: #c8d0e8;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.socials a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 24px rgba(123, 97, 255, 0.22);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #7f8aa8;
}

.newsletter-form button {
  border: none;
  border-radius: 16px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 26px rgba(255, 122, 61, 0.18);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 22px auto 0;
  padding-top: 18px;
  text-align: center;
  color: #93a0bf;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1200px) {
  .slider-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--transition);
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navbar,
  .main-home,
  .footer {
    left: 0;
    margin-left: 0;
  }

  .nav-copy,
  .nav-link {
    display: none;
  }

  .slider-grid {
    grid-template-columns: 1fr;
  }

  .vertical-layout {
    grid-template-columns: 1fr;
  }

  .vertical-track-shell {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .main-home {
    padding: 150px 16px 40px;
  }

  .hero-section h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .card-head,
  .card-footer {
    flex-direction: column;
  }

  .step-legend,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    padding: 54px 16px 18px;
  }

  .footer-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:900px){

  .sidebar{
    transform:translateX(-100%);
  }

  .navbar{
    left:0;
  }

  .main-home{

    margin-left:0;

    width:100%;
  }
}

@media(max-width:768px){

  .navbar{

    padding:0 20px;
  }

  .main-home{

    padding:120px 20px 60px;
  }

  .search-bar{

    width:220px;
  }

  .activity-item{

    flex-direction:column;
    align-items:flex-start;
  }

  .hero-section h1{

    font-size:54px;
  }
}

@media(max-width:560px){

  .navbar{

    flex-direction:column;

    height:auto;

    gap:16px;

    padding:18px;
  }

  .search-bar{

    width:100%;
  }

  .section-title h2{

    font-size:32px;
  }

  .message-box{

    max-width:100%;
  }
}