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

:root {
  --primary: #2b2623;
  --secondary: #f6f5f3;
  --accent-cyan: #d6b98c;
  --accent-orange: #d6b98c;
  --accent-purple: #d6b98c;
  --accent-green: #10b981;
  --text: #1f1f1f;
  --text-light: #6f6a65;
  --text-muted: #6f6a65;
  --border: #efe5d6;
  --bg: #ffffff;
  --bg-light: #f6f5f3;
  --primary-gold: #c49a3a;
  --text-dark: #111827;
  ;
  --border-light: #f3f4f6;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --primary-brown: #8b5e3c;
  --border-tan: #eaddd1;
  --accent-tan: #d7b9a0;

  /* Living animation vars */
  --living-glow: 0 0 20px rgba(214, 185, 140, 0.6);
  --pulse-glow: 0 0 30px rgba(214, 185, 140, 0.8);
  --kinetic-glow: 0 0 40px rgba(214, 185, 140, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(-45deg, var(--bg), var(--bg-light), var(--bg), var(--secondary));
  background-size: 400% 400%;
  animation: breathingBg 8s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

@keyframes breathingBg {

  0%,
  100% {
    background-position: 0% 50%;
  }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ANIMATED BACKGROUND - FIXED */

#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 - FIXED */
.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;
}

/* HEADER - FIXED */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  /* border-bottom: 1px solid var(--border); */
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  /* transition: transform 0.3s ease; */
}

.logo-full {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::before {
  width: 100%;
}

/* Hamburger */
/* .header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.header-right {
  display: flex;
  align-items: right;
  gap: 1rem;
  /* space between buttons and hamburger */
}

.hamburger {
  display: none;
  /* show only on mobile */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-login {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login:hover {
  border-color: var(--text);
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-signup {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 14, 39, 0.3);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to {
    left: 100%;
  }
}

/* HERO SECTION - FIXED */
.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 - FIXED */
.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 - FIXED */
.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: 67px;
  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: 6rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -4px;
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg,
      #1a1411 0%,
      /* near-black espresso */
      #4b2e22 30%,
      /* deep roasted coffee */
      #b07a4a 65%,
      /* bright caramel highlight */
      #2a1d17 100%
      /* dark cocoa shadow */
    );
  -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;
}

.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: 1.3rem 2.5rem;
  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: 1.3rem 2.5rem;
  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: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  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);
  /* same as footer */
  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;
  /* dark brown */
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #f5f5f5;
  /* light text inside */
}

.feature-card h4,
.feature-card p,
.feature-card h3,
.feature-card span {
  color: #f5f5f5;
  /* ensures readability on brown */
}

.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 - FIXED */
.demo-section {
  padding: 10rem 0;
  background: var(--bg-light);
}

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

.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: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.3rem;
  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 - FIXED */
.features-section {
  padding: 10rem 0;
  background: var(--bg);
}

.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;
}

.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.6rem;
  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 - FIXED */
.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);
}

/* FOOTER - FIXED */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

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

.see-clopad {
  background: #f6f5f3;
  padding: 10rem 60px;
  overflow-x: hidden;
}

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

/* LEFT SIDE - APP MOCK */
.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 */
.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 ITEMS */
.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;
}

/* MAIN AREA */
.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* header on top, content below */
  padding: 16px 20px;
  min-width: 0;
}

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

.logo {
  height: 20px;
}

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

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

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

/* STATUS SUMMARY */
.summary h4 {
  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 CAROUSEL */
/* ===== STATUS SUMMARY CARD ===== */
.status-summary {
  background: linear-gradient(180deg, #fff7ec 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 22px 24px 28px;
}

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

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

/* ===== CARD BASE ===== */
.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;
}

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

/* ===== SIDE CARDS ===== */
.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 ===== */
.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: #666;
}

/* ===== ARROWS ===== */
.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%;
    /* adjust so text fits */
    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;
    /* reduce padding */
    font-size: 12px;
    /* shrink text slightly */
    white-space: normal;
    /* allow wrapping if necessary */
  }

  .stat-card b {
    font-size: 28px;
    /* smaller numbers */
  }

  .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;
    /* hide side cards for ultra small screens */
  }

  .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;
    /* shrink padding */
    font-size: 8px;
    /* smaller text */
  }

  .stat-card b {
    font-size: 20px;
    /* smaller numbers */
  }
}

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

  .stat-card b {
    font-size: 16px;
    /* smaller numbers */
  }
}

.nav {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* CHARTS */
.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;
}

/* RIGHT SIDE - DESCRIPTION */
.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;
}

/* RESPONSIVE */
@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) {
  .auth-buttons {
    flex-direction: column;
  }

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

/* Mobile view */
@media (max-width: 768px) {
  .header .container {
    display: flex;
    align-items: center;
    justify-content: right;
  }

  .auth-buttons {
    gap: 1rem;
    /* space between login/register and hamburger */
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    /* hide nav links by default */
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    gap: 1rem;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }
}

/* RESPONSIVE */
@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;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

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

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

.faq-container {
  max-width: 860px;
  margin: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.6rem 1.8rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
  padding: 0 1.8rem 1.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   GLOBAL ANIMATION KILL SWITCH
   ============================ */

.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);
}

/* Typography Customization */
.section-tag {
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--primary-brown);
}

.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 Component */
.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 Effect */
.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 Numbers */
.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;
}

/* Elements Inside Panels */
.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;
}

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

/* Description reveal */
.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;
  opacity: 1;
  margin-top: 10px;
}

/* Footer CTA */
.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;
}

/* Responsive Adjustments */
@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;
  }
}