#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite, breathe 6s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-cyan), transparent);
  top: 10%;
  left: 10%;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple), transparent);
  top: 60%;
  right: 10%;
  animation-delay: 7s, 2s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-orange), var(--accent-green));
  bottom: 10%;
  left: 50%;
  animation-delay: 14s, 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

@keyframes breathe {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.6;
  }
}

.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  display: block;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  mix-blend-mode: difference;
  box-shadow: var(--living-glow);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  mix-blend-mode: difference;
}



/* home hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-video {
  position: absolute;
  top: 60%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.85) 100%);
  z-index: -1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 185, 140, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: floatCard 8s ease-in-out infinite;
}

.card-1 {
  top: 15%;
  left: 7%;
}

.card-2 {
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}

.card-3 {
  top: 15%;
  right: 5%;
  animation-delay: 2s;
}

.card-4 {
  bottom: 15%;
  left: 12%;
  animation-delay: 3s;
}

.card-5 {
  top: 43%;
  left: 10%;
  animation-delay: 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }
}


.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 185, 140, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.float-card:hover .card-glow {
  opacity: 1;
}

.data-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.data-icon {
  font-size: 1.1rem;
}

.data-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.metric-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.data-trend {
  margin-top: 0.5rem;
}

.trend-up {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green);
}

.pulse-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring:nth-child(2) {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-green);
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green);
  text-align: center;
}

.mini-line-chart {
  width: 120px;
  height: 50px;
  margin-bottom: 0.5rem;
}

.chart-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.bar {
  width: 12px;
  height: var(--height);
  background: var(--color);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease-out var(--delay) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes barGrow {
  to {
    transform: scaleY(1);
  }
}

.code-snippet {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.code-line {
  color: var(--text);
}

.code-keyword {
  color: #c678dd;
}

.code-var {
  color: #e06c75;
}

.code-method {
  color: #61afef;
}

.hero-content {
  text-align: center;
  max-width: 950px;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  height: 55px;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(214, 185, 140, 0.3);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--accent-cyan);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -4px;
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg,
      #1a1411 0%,
      #4b2e22 30%,
      #b07a4a 65%,
      #2a1d17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  background-size: 280% auto;
  animation: brownShift 9s ease-in-out infinite;
}

@keyframes brownShift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

@keyframes gradientShift {
  to {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.3;
  animation-delay: 0s !important;
  transition-delay: 0s !important;
}

.highlight-text {
  color: var(--text);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 14, 39, 0.35);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: 2px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.play-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-secondary:hover .play-icon {
  background: var(--accent-cyan);
  color: white;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #2c1f1818;
  border: 1px solid #2c1f18;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}


.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  background: var(--accent-cyan);
}

.feature-chip:hover {
  background: rgba(214, 185, 140, 0.15);
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 10rem 0;
}

.dark-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.dark-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.dark-section .tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dark-section .section-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1.1;
}

.dark-section .section-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.feature-card {
  background-color: #4a433d;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #f5f5f5;
}

.feature-card h4,
.feature-card p,
.feature-card h3,
.feature-card span {
  color: #f5f5f5;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
}


.demo-section {
  padding: 10rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.demo-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-window {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.window-header {
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ff5f56;
}

.control-dot.yellow {
  background: #ffbd2e;
}

.control-dot.green {
  background: #27c93f;
}

.window-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.window-actions {
  display: flex;
  gap: 0.5rem;
}

.window-action {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

.demo-content {
  padding: 2rem;
}

.kanban-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.kanban-column {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1rem;
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.column-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.column-count {
  background: var(--accent-cyan);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}

.task-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: move;
  transition: all 0.3s ease;
}

.task-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.task-card.active {
  border-color: var(--accent-cyan);
}

.task-card.completed {
  opacity: 0.6;
}

.task-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.priority-high {
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent-orange);
}

.priority-medium {
  background: rgba(214, 185, 140, 0.15);
  color: var(--accent-cyan);
}

.task-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.task-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.task-progress {
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  width: var(--progress);
  background: var(--accent-cyan);
  border-radius: 2px;
}

.progress-text {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.task-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.task-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.task-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.activity-feed {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
}

.activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.activity-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.activity-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text);
}

.activity-content strong {
  font-weight: 600;
}

.activity-content em {
  font-style: normal;
  color: var(--accent-cyan);
}

.activity-time {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.demo-description h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.demo-description p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.demo-features {
  list-style: none;
  margin-bottom: 2rem;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text);
}

.features-section {
  padding: 100px 0;
  background: var(--bg);
}



@media (max-width: 767px) {
  .features-section {
    padding: 50px 0;
  }


}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.feature-card-3d {
  background: var(--bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media (max-width: 767px) {
  .feature-card-3d {
    padding: 15px;
  }
}

.feature-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange), var(--accent-purple));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-card-3d:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.feature-card-3d:hover::before {
  transform: scaleX(1);
}

.feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 185, 140, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card-3d:hover .feature-glow {
  opacity: 1;
}

.feature-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}


.feature-icon.gradient-orange {
  background: var(--accent-orange);
}

.feature-icon.gradient-purple {
  background: var(--accent-purple);
}

.feature-icon.gradient-green {
  background: var(--accent-green);
}

.feature-card-3d:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card-3d h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

.feature-card-3d p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

.cta-section {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.cta-section h2 {
  color: #f6f5f3;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(214, 185, 140, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 185, 140, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  to {
    transform: translate(50px, 50px);
  }
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(214, 185, 140, 0.2) 0%, transparent 70%);
  animation: orbPulse 10s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}


.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
}

.cta-content>p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn-primary.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}



.seeclopad-header {
  max-width: 560px;
  width: 100%;
  margin: auto;
}

.see-clopad {
  background: #f6f5f3;
  padding: 100px 0;
  overflow-x: hidden;
}

@media (max-width: 767px) {

  .see-clopad {

    padding: 50px 0;

  }

}


.see-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: nowrap;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-mock {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .08);
  overflow: hidden;
  min-width: 800px;
  width: 100%;
  max-width: 100%;
}

.sidebar {
  width: 160px;
  min-width: 160px;
  background: #f6f5f3;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 20px 0 0 20px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: #555;
  cursor: default;
}

.nav-item .icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.nav-item.active {
  background: #1f1f1f;
  color: #fff;
}

.nav-item.active .icon {
  color: #fff;
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  min-width: 0;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}



.search {
  flex: 1;
  background: #f2f2f2;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #4a4a4a;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.summary h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.unassigned {
  border: 1px dashed #f4a63d;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.unassigned .count {
  font-size: 22px;
  font-weight: 700;
  color: #f4a63d;
}

.status-summary {
  background: linear-gradient(180deg, #fff7ec 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 22px 24px 28px;
}

.carousel-wrapper-3d {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.carousel-stage {
  position: relative;
  width: 420px;
  height: 140px;
  overflow: hidden;
}

.carousel-card-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.carousel-card-3d.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 3;
}

.carousel-card-3d.prev {
  opacity: 0.4;
  transform: translate(-140%, -50%) scale(0.82);
  z-index: 2;
}

.carousel-card-3d.next {
  opacity: 0.4;
  transform: translate(40%, -50%) scale(0.82);
  z-index: 2;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stat-card b {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.stat-card {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

@media (max-width: 480px) {
  .carousel-stage {
    width: 95%;
    max-width: none;
    height: 130px;
  }

  .carousel-card-3d {
    width: 75%;
    max-width: none;
    transform: translate(-50%, -50%) scale(0.85);
  }

  .carousel-card-3d.active {
    transform: translate(-50%, -50%) scale(0.95);
  }

  .carousel-card-3d.prev,
  .carousel-card-3d.next {
    transform: translateX(40%) scale(0.8);
    opacity: 0.35;
  }

  .stat-card {
    padding: 8px 12px;
    font-size: 12px;
    white-space: normal;
  }

  .stat-card b {
    font-size: 28px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .carousel-stage {
    height: 110px;
  }

  .carousel-card-3d {
    width: 70%;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .carousel-card-3d.prev,
  .carousel-card-3d.next {
    display: none;
  }

  .carousel-card-3d.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .stat-card {
    padding: 8px 12px;
    font-size: 11px;
  }

  .stat-card b {
    font-size: 26px;
  }

  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

@media (max-width: 385px) {
  .stat-card {
    padding: 6px 10px;
    font-size: 8px;
  }

  .stat-card b {
    font-size: 20px;
  }
}

@media (max-width: 358px) {
  .stat-card {
    padding: 4px 8px;
    font-size: 6px;
  }

  .stat-card b {
    font-size: 16px;
  }
}


.charts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.card.chart {
  padding: 12px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.charts canvas {
  width: 90%;
  max-width: 100%;
  height: auto !important;
}

.description {
  flex: 0 0 30%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.description h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.description p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

.description ul {
  margin-top: 12px;
  padding-left: 18px;
}

.description li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 1280px) {
  .see-wrapper {
    flex-wrap: wrap;
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .app-mock,
  .description {
    flex: 0 0 100%;
    min-width: 0;
  }

  .description {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .description h2 {
    font-size: 26px;
  }

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

@media (max-width: 1024px) {
  .sidebar {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .content-block {
    margin-top: 30px;
  }

  .hero-video {
    top: 54%;
  }
}

@media (max-width: 992px) {
  .content-block {
    margin-top: 30px;
  }
}

@media (max-width: 1366px) {
  .hero-video {
    top: 58%;
  }
}

@media (max-width: 820px) {
  .hero-video {
    top: 56%;
  }
}

@media (max-width: 425px) {

  .hero-content {
    margin-top: 11%;
  }
}


@media (max-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }

  .floating-elements {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .demo-container {
    grid-template-columns: 1fr;
  }

  .see-wrapper {
    gap: 60px;
  }

  .hero-video {
    top: 54%;
  }
}

@media (max-width: 768px) {
  body {
    cursor: default;
  }

  .custom-cursor {
    display: none;
  }

  .nav {
    display: none;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -2px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .stats-section .container {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .kanban-preview {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }



  .see-wrapper {
    gap: 60px;
  }
}

.faq-section {
  padding: 100px 0;
  background: var(--bg-light);
}



@media (max-width: 767px) {

  .faq-section {
    padding: 50px 0;
  }

}


.animated-bg,
.molecule-bg,
.particles {
  animation: none !important;
  transition: none !important;
}

.animated-bg,
.molecule-bg,
.particles {
  display: none !important;
}

.decorative-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background-color: rgba(215, 185, 160, 0.2);
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background-color: rgba(139, 94, 60, 0.1);
}

.section-tag {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #c8a96e;
}

.tag-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-brown);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.section-main-title {
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.accordion-wrapper {
  border-radius: 40px;
  overflow: hidden;
  background: white;
  border: 2px solid var(--border-tan);
}

.panel {
  position: relative;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
  transition: all 700ms cubic-bezier(0.23, 1, 0.32, 1);
  background-color: #faf7f2;
  color: var(--text-dark);
  border-right: 1px solid var(--border-tan);
  flex: 1;
}

.panel:last-child {
  border-right: none;
}

.panel.active {
  flex: 2.5;
  background-color: var(--primary);
  color: white;
}

.panel-inner {
  position: relative;
  z-index: 10;
  height: 100%;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

.index-number {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.03;
  transition: all 700ms ease;
  user-select: none;
}

.panel.active .index-number {
  opacity: 0.1;
  color: white;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(139, 94, 60, 0.1);
  transition: all 500ms ease;
  color: var(--primary);
}

.panel.active .icon-box {
  background-color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.plus-icon {
  transition: all 500ms ease;
  color: rgba(139, 94, 60, 0.3);
}

.panel.active .plus-icon {
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.5);
}

.panel-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: all 500ms ease;
}

@media (max-width: 1024px) {
  .panel-title {
    font-size: 1.4rem;
  }

}

.panel:not(.active) .panel-title {
  transform: translateY(15px);
  opacity: 0.7;
}

.panel-description {
  transition: all 700ms ease;
}

.panel:not(.active) .panel-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.panel.active .panel-description {
  max-height: 300px;
  overflow: auto;
  opacity: 1;
  margin-top: 10px;
}

.cta-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent-tan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  color: var(--primary-brown);
}

.cta-link:hover .cta-circle {
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: white;
}

.ls-2 {
  letter-spacing: 0.2em;
}

.fw-black {
  font-weight: 900;
}

.why-choose-us {
  background: var(--bg);
  padding: 100px 0;
}


@media (max-width: 767px) {
  .why-choose-us {
    padding: 50px 0;
  }
}

/* project management */
.project-management-section {
  padding: 100px 0; 
  background: #f6f5f3;
}

@media (max-width: 767px) {
  .project-management-section {
    padding: 50px 0;
  }
}


.kinetic-container .panel-inner {
  padding: 45px;
}

@media (max-width: 767px) {
  .kinetic-container .panel-inner {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .kinetic-container {
    flex-direction: column;
  }

  .panel {
    height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--border-tan);
  }

  .panel.active {
    height: 500px;
  }

  .section-main-title {
    font-size: 3.5rem;
  }
}



/* video-modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.video-modal-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
}

.video-modal-content h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

.video-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.video-modal-close:hover {
  background: var(--bg-light);
  transform: scale(1.05);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .video-modal {
    padding: 1rem;
  }

  .video-modal-content {
    padding: 1rem 1rem 1.25rem;
  }

  .video-modal-content h3 {
    font-size: 1.25rem;
    padding-right: 3rem;
  }

  .video-modal-dialog {
    border-radius: 18px;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
  }
}


/* dashboard-points */
.dashboard-points li {
  display: flex;
  line-height: normal;
  margin: 0 0 10px 0;
}