:root {
  --bg:#fff;
  --card: #12192b;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #98a3bd;
  --accent: #ff7a3d;
  --accent2: #7b61ff;
  --green: #22c55e;
  --blue: #3b82f6;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  background:#fff;
  overflow-x: hidden;
}

body.sidebar-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #050816 0%, #0d1226 100%);
  border-right: 1px solid var(--border);
  z-index: 1001;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 30px rgba(123, 97, 255, 0.22);
}

.brand-text {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.sidebar-nav ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #9aa4bf;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav .active a {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.sidebar-nav i {
  width: 18px;
}

.sidebar-footer {
  display: flex;
  gap: 12px;
}

.sidebar-footer a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 1000;
}

.sidebar-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.navbar {
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  background: rgba(5, 8, 22, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.search-bar input::placeholder {
  color: #7f8aa8;
}

.search-icon {
  color: #c9d1ea;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
}

.nav-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 28px rgba(123, 97, 255, 0.2);
}

.main-home {
  margin-left: 240px;
  padding: 120px 40px 60px;
}

.hero-section {
  max-width: 920px;
  margin-bottom: 42px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #d9e1f9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section h1 {
  margin-top: 18px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-section p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.state-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(18, 25, 43, 0.95), rgba(23, 32, 56, 0.92));
  
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.state-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 97, 255, 0.5);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.state-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:#fff;
    
}

.state-art i {
  position: relative;
  z-index: 1;
  font-size: 58px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.state-content {
  padding: 24px;
}

.state-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d9e1f9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-content h2 {
  margin-top: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.state-content p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta {
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.cta:hover {
  transform: translateY(-2px);
}

.cta.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 24px rgba(123, 97, 255, 0.18);
}

.cta.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.orb,
.ring,
.search-line,
.upload-card,
.upload-dot {
  position: absolute;
}

.orb {
  border-radius: 50%;
  filter: blur(1px);
}

.orb-a {
  width: 112px;
  height: 112px;
  top: 28px;
  right: 24px;
  background: rgba(123, 97, 255, 0.16);
}

.orb-b {
  width: 62px;
  height: 62px;
  bottom: 28px;
  left: 26px;
  background: rgba(255, 122, 61, 0.14);
}

.orb-c {
  width: 86px;
  height: 86px;
  top: 24px;
  left: 28px;
  background: rgba(34, 197, 94, 0.12);
}

.orb-d {
  width: 58px;
  height: 58px;
  bottom: 22px;
  right: 28px;
  background: rgba(123, 97, 255, 0.12);
}

.search-line {
  width: 138px;
  height: 10px;
  bottom: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.search-line.short {
  width: 84px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.ring {
  border-radius: 50%;
  border: 1px solid rgba(123, 97, 255, 0.28);
}

.ring-a {
  width: 118px;
  height: 118px;
}

.ring-b {
  width: 160px;
  height: 160px;
  opacity: 0.5;
}

.upload-card {
  width: 132px;
  height: 96px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.upload-dot {
  width: 18px;
  height: 18px;
  right: calc(50% - 66px);
  bottom: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 8px rgba(123, 97, 255, 0.08);
}

/* =========================================================
CREATIVE EMPTY STATES
========================================================= */

.creative-empty-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  margin-top:40px;
}

.creative-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  padding:28px;
  transition:0.4s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.creative-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.creative-visual{
  position:relative;
  height:180px;
  border-radius:24px;
  margin-bottom:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* =========================================================
CONTENT
========================================================= */

.creative-content h3{
  font-size:1.5rem;
  margin-bottom:12px;
  color:#111827;
}

.creative-content p{
  color:#6b7280;
  line-height:1.7;
  margin-bottom:20px;
}

.badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.82rem;
  font-weight:600;
  margin-bottom:16px;
  background:#f3f4f6;
  color:#4b5563;
}

.creative-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  border:none;
  padding:12px 18px;
  border-radius:14px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
}

.btn-primary{
  background:#111827;
  color:white;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  background:#f3f4f6;
  color:#111827;
}

/* =========================================================
ANALYTICS
========================================================= */

.analytics-card .creative-visual{
  background:linear-gradient(135deg,#eef2ff,#f5f3ff);
}

.graph-bars{
  display:flex;
  align-items:flex-end;
  gap:10px;
}

.graph-bars span{
  width:18px;
  border-radius:20px;
  background:#6366f1;
  animation:bounce 2s infinite ease-in-out;
}

.graph-bars span:nth-child(1){height:50px;}
.graph-bars span:nth-child(2){height:90px;}
.graph-bars span:nth-child(3){height:70px;}
.graph-bars span:nth-child(4){height:120px;}

.floating-circle{
  position:absolute;
  width:120px;
  height:120px;
  background:rgba(99,102,241,0.15);
  border-radius:50%;
  top:-20px;
  right:-20px;
}

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

.avatars-visual{
  background:linear-gradient(135deg,#f0fdf4,#ecfeff);
}

.avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  position:absolute;
  border:4px solid white;
}

.avatar-1{
  background:#34d399;
  left:90px;
}

.avatar-2{
  background:#60a5fa;
}

.avatar-3{
  background:#f472b6;
  right:90px;
}

.plus-circle{
  position:absolute;
  bottom:35px;
  right:35px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#111827;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================================================
MUSIC
========================================================= */

.music-visual{
  background:linear-gradient(135deg,#faf5ff,#fdf2f8);
}

.vinyl{
  width:110px;
  height:110px;
  border-radius:50%;
  background:#111827;
  position:absolute;
}

.vinyl::before{
  content:"";
  position:absolute;
  inset:20px;
  border-radius:50%;
  border:3px solid #fff;
}

.music-wave{
  position:absolute;
  bottom:35px;
  display:flex;
  gap:6px;
}

.music-wave span{
  width:6px;
  border-radius:20px;
  background:#a855f7;
  animation:wave 1.2s infinite ease-in-out;
}

.music-wave span:nth-child(1){height:20px;}
.music-wave span:nth-child(2){height:40px;}
.music-wave span:nth-child(3){height:60px;}
.music-wave span:nth-child(4){height:30px;}

/* =========================================================
SHOPPING
========================================================= */

.cart-visual{
  background:linear-gradient(135deg,#fff7ed,#fef2f2);
}

.cart-box{
  width:120px;
  height:120px;
  border-radius:28px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3rem;
  color:#f97316;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.cart-dot{
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fb7185;
}

.dot-1{
  top:40px;
  left:70px;
}

.dot-2{
  bottom:30px;
  right:80px;
}

/* =========================================================
CALENDAR
========================================================= */

.calendar-visual{
  background:linear-gradient(135deg,#ecfeff,#eef2ff);
}

.calendar-box{
  width:130px;
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.calendar-top{
  height:40px;
  background:#6366f1;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  padding:18px;
}

.calendar-grid span{
  height:20px;
  border-radius:8px;
  background:#e5e7eb;
}

/* =========================================================
BOOKMARK
========================================================= */

.bookmark-visual{
  background:linear-gradient(135deg,#fefce8,#fff7ed);
}

.bookmark-shape{
  width:90px;
  height:120px;
  background:#f59e0b;
  border-radius:18px 18px 8px 8px;
  clip-path:polygon(0 0,100% 0,100% 100%,50% 82%,0 100%);
}

.bookmark-shadow{
  position:absolute;
  width:130px;
  height:130px;
  border-radius:50%;
  background:rgba(245,158,11,0.15);
}

/* =========================================================
ICONS
========================================================= */

.creative-visual i{
  position:absolute;
  font-size:2rem;
  color:#111827;
}

/* =========================================================
ANIMATIONS
========================================================= */

@keyframes bounce{
  0%,100%{
    transform:scaleY(1);
  }

  50%{
    transform:scaleY(1.2);
  }
}

@keyframes wave{
  0%,100%{
    transform:scaleY(1);
  }

  50%{
    transform:scaleY(1.5);
  }
}

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

@media(max-width:768px){

  .creative-card{
    padding:22px;
  }

  .creative-visual{
    height:160px;
  }

}
.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.08), 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;
  font-size: 13px;
  color: #aaa;
}
  color: #93a0bf;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1200px) {
  .states-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;
  }

  .navbar {
    padding: 0 18px;
  }

  .nav-right {
    display: none;
  }

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

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

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

  .search-bar {
    order: 3;
    max-width: none;
    width: 100%;
  }

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

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

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

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

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

.background-blobs{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  opacity:.15;
}

.blob-1{
  width:350px;
  height:350px;
  background:#7c3aed;
  top:10%;
  left:5%;
}

.blob-2{
  width:300px;
  height:300px;
  background:#06b6d4;
  right:10%;
  top:20%;
}

.blob-3{
  width:350px;
  height:350px;
  background:#f43f5e;
  bottom:10%;
  left:40%;
}


.creative-card{
  position:relative;
  overflow:hidden;
}

.creative-card::before{
  content:"";
  position:absolute;
  inset:-2px;

  background:
  linear-gradient(
    135deg,
    #7c3aed,
    #06b6d4,
    #ec4899
  );

  opacity:0;
  transition:.4s;
  z-index:-1;
}

.creative-card:hover::before{
  opacity:1;
}
.category-tabs{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin:40px 0;
}

.category-tabs button{
  border:none;
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
}