/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .cta-button,
  .cta-text,
  .cta-arrow {
      text-decoration: none !important;
  }

  /* In your globals.css or a CSS module */
  ::selection {
    background-color: rgba(255, 0, 0, 0.3);
    color: white;
    text-shadow: none;
  }
  
  ::-moz-selection {
    background-color: #e600004d;
    color: white;
    text-shadow: none;
  }

  /* Works on Chrome, Edge, and Safari */
  ::-webkit-scrollbar {
    width: 12px;
  }

  /* The track (the background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: #000000; /* A dark color that matches your page background */
  }

  /* The draggable scrolling handle */
  ::-webkit-scrollbar-thumb {
    background-color: #ff0000; /* The core red color */
    border-radius: 20px; /* Fully rounded edges */
    border: 3px solid #1A1A1A; /* Creates a nice padding effect */
    box-shadow: 0 0 10px #000000, 0 0 5px #FF0000; /* The red glow */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #ff0000; /* A brighter red on hover */
    box-shadow: 0 0 15px #FF6B6B, 0 0 10px #FF4D4D; /* A more intense glow */
  }

  /* Handle on active state (when you're clicking and dragging) */
  ::-webkit-scrollbar-thumb:active {
    background-color: #f80000;
    box-shadow: 0 0 20px #000000, 0 0 15px #FF6B6B;
  }
  
  body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
  }
  
  /* ✨ Optional: subtle ambient glow (remove if too much) */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 0, 0, 0.3), transparent 70%);
    pointer-events: none;
    z-index: -1;
  }
  
  /* 🔥 Navbar — Fixed, spacious, professional */
  .navbar {
    position: fixed;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 30, 30, 0.25);
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.5),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    z-index: 2000;
  }
  
  /* Left Side: Logo + Site Name */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .logo img {
    height: 34px;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.5));
  }
  
  .site-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease;
  }
  
  .site-name:hover {
    color: #ff2a2a;
    text-shadow: 0 0 12px rgba(255, 40, 40, 0.7);
  }
  
  /* Nav Links — Balanced, no underline animation */
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
  }
  
  .nav-link:hover {
    color: #ff2a2a;
    background: rgba(255, 40, 40, 0.06);
  }
  
  /* 🖼️ Hero — Lowered, grounded, no animation */
  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: flex-start; /* ← we're NOT centering vertically */
    align-items: center;
    padding: 50px 395px;
    position: relative;
    /* Push everything down with top margin */
    padding-top: 140px; /* 👈 THIS IS THE KEY — 220px from top */
  }
  
  .hero-content {
    text-align: center;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* space between title → subtitle → button */
  }
  
  /* Title */
  .hero-title {
    font-size: clamp(4rem, 9vw, 6.25rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }
  
  .hero-title .work {
    display: block;
    color: #ffffff;
  }
  
  .hero-title .reimagined {
    display: block;
    color: #ff1a1a;
    position: relative;
    margin-top: -12px; /* tighter kerning between lines */
  }

  .hero-glow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 60vw;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 40, 40, 0.3) 0%,
      rgba(255, 40, 40, 0.1) 50%,
      transparent 80%
    );
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 6s infinite ease-in-out;
  }
  
  
  /* Subtitle — STATIC (no fade, no delay) */
  .hero-subtitle {
    font-size: clamp(1rem, 1vw, 1rem);
    margin-bottom: 20px;
    line-height: 1.6;
    color: #c5c5c5;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    /* ✅ NO ANIMATION — pure static */
  }
  
  /* CTA Button (refined) */
  .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 52px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 52px;
    cursor: pointer;
    background: linear-gradient(135deg, #000, #150000);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: white;
    box-shadow: 
      0 10px 30px rgba(255, 0, 0, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  
  .cta-button:hover {
    transform: scale(1.04);
    box-shadow: 
      0 12px 40px rgba(239, 68, 68, 0.45),
      0 0 50px rgba(239, 68, 68, 0.5);
  }
  
  .cta-button:active {
    transform: scale(0.98);
  }
  
  .cta-text {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .cta-arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
  }
  
  .cta-button:hover .cta-arrow {
    transform: translateX(10px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      left: 24px;
      right: 24px;
      padding: 0 20px;
    }
  
    .nav-left {
      gap: 12px;
    }
  
    .site-name {
      font-size: 1.2rem;
    }
  
    .nav-links {
      gap: 24px;
    }
  
    .hero {
      padding-bottom: 130px;
    }
  
    .hero-title {
      font-size: clamp(3.2rem, 12vw, 4.8rem);
    }
  
    .hero-title .reimagined {
      margin-top: -10px;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 36px;
    }
  
    .cta-button {
      padding: 14px 44px;
      font-size: 1.15rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar {
      top: 16px;
      left: 16px;
      right: 16px;
      height: 56px;
    }
  
    .nav-left {
      gap: 10px;
    }
  
    .site-name {
      font-size: 1.1rem;
    }
  
    .nav-links {
      gap: 18px;
    }
  
    .nav-link {
      font-size: 14px;
    }
  
    .hero {
      padding: 0 20px;
      padding-bottom: 110px;
    }
  
    .hero-title {
      font-size: clamp(2.6rem, 16vw, 3.6rem);
    }
  
    .hero-title .reimagined {
      margin-top: -8px;
    }
  
    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 32px;
    }
  
    .cta-button {
      padding: 12px 36px;
      font-size: 1.05rem;
    }
  }

  .simple-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 30px;
    /* First border */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Second border (inner) */
    box-shadow: inset 0 0 0 1px rgba(255, 40, 40, 0.2);
    background: transparent;
    border-radius: 16px;
  }
  
  .center-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }

  /* How It Works Section */
  .how-it-works {
    padding: 120px 40px 100px;
    position: relative;
    
  }

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

  .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .content-grid {
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
  }

  /* Text Column */
  .text-column {
    text-align: left;
  }

  .section-title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 800;
    color: #e21414;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
  }

  .features-list {
    list-style: none;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .feature-icon {
    color: #ff2a2a;
    font-weight: bold;
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* Board Column */
  .board-column {
    display: flex;
    justify-content: center;
  }

  .kanban-board {
    width: 100%;
    max-width: 680px;
  }

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

  @media (min-width: 640px) {
    .board-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

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

  .column-header {
    padding: 16px;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .column-header.to-do {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.25);
    color: #ff6666;
  }

  .column-header.in-progress {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.25);
    color: #ff4d4d;
  }

  .column-header.done {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.25);
    color: #ff2a2a;
  }

  .card.placeholder {
    height: 60px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
  }

  .card.placeholder::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 16px;
    width: 40%;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
  }

  .card.placeholder::after {
    content: '';
    position: absolute;
    top: 34px;
    left: 16px;
    width: 30%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
  }
  

  .kanban-wrapper {
    width: 100%;
    max-width: 700px; /* ← controls overall width */
    margin: 0 auto;
  }
  
  .board-grid {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center; /* centers columns */
  }
  
  /* Glow — safe, no width impact */
  .board-grid::before {
    content: '';
    position: absolute;
    inset: -40px; /* 👈 key: expand outside grid */
    background: radial-gradient(
      circle at center,
      rgba(255, 40, 40, 0.3),
      rgba(255, 40, 40, 0.1) 60%,
      transparent 90%
    );
    filter: blur(70px); /* big, soft, premium */
    z-index: 0;
    pointer-events: none;
  }
  
  /* Columns — natural width, no stretching */
  .board-grid > .board-column {
    flex: 0 1 220px; /* don't grow, do shrink, base width 220px */
    position: relative;
    z-index: 1;
  }
  /* Final CTA Section */
.final-cta {
  padding: 100px 40px 120px;
  text-align: center;
}

.cards-container {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Glow behind each card */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 40, 40, 0.15),
    transparent 70%
  );
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge.free {
  background: rgba(255, 200, 0, 0.15);
  color: #ffcc00;
  border: 1px solid rgba(255, 200, 0, 0.3);
}

.badge.ready {
  background: rgba(0, 200, 100, 0.15);
  color: #00cc66;
  border: 1px solid rgba(0, 200, 100, 0.3);
}

.card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.card-desc {
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.counter {
  background: rgba(255, 40, 40, 0.1);
  border: 1px solid rgba(255, 40, 40, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  display: inline-block;
  font-weight: 600;
  color: #ff4d4d;
}

.spots {
  font-weight: 800;
  color: #ff2a2a;
}

.checklist {
  list-style: none;
  text-align: left;
  margin-top: 12px;
}

.checklist li {
  color: #a0a0a0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Final Button */
.final-button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.button-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 40, 40, 0.25),
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.final-button .cta-button {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  padding: 18px 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .cards-container {
    gap: 24px;
  }

  .feature-card {
    max-width: 100%;
    padding: 24px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .button-glow {
    width: 250px;
    height: 250px;
  }

  .final-button .cta-button {
    padding: 16px 48px;
    font-size: 1.25rem;
  }
}

/* Glowing Footer */
.glowing-footer {
  position: relative;
  background: 
    linear-gradient(to bottom, rgba(10, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at top, rgba(255, 40, 40, 0.15), transparent 70%);
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* Red glow overlay */
.glowing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 40, 40, 0.1),
    transparent 80%
  );
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .logo img {
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
}

.footer-brand .site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(255, 40, 40, 0.15);
  color: #ff2a2a;
  border-color: rgba(255, 40, 40, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 40, 40, 0.2);
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
  .footer-content {
    gap: 24px;
  }

  .social-links {
    gap: 14px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}