/* about.css — Honest, Elite, Frontend-Only */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --red: #ff2a2a;
    --red-light: #ff4d4d;
    --gray: #c0c0c0;
    --dark: #0a0a0a;
    --darker: #000;
  }
  
  body {
    background-color: var(--darker);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }

  ::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: #1A1A1A; /* A dark color that matches your page background */
  }

  /* The draggable scrolling handle */
  ::-webkit-scrollbar-thumb {
    background-color: #E53E3E; /* The core red color */
    border-radius: 20px; /* Fully rounded edges */
    border: 3px solid #1A1A1A; /* Creates a nice padding effect */
    box-shadow: 0 0 10px #E53E3E, 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: #FF6B6B; /* 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: #FF8787;
    box-shadow: 0 0 20px #FF8787, 0 0 15px #FF6B6B;
  }
  
  
  /* Navbar */
  .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(16px);
    -webkit-backdrop-filter: blur(16px);
    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: 1000;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .logo img {
    height: 32px;
    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: var(--red);
    text-shadow: 0 0 12px rgba(255, 40, 40, 0.7);
  }
  
  .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: var(--red);
    background: rgba(255, 40, 40, 0.06);
  }
  
  /* Hero */
  .about-hero {
    padding: 180px 40px 100px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
    color: #cc2222;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #ff0000;
    max-width: 650px;
    margin: 0 auto;
  }
  
  /* Content */
  .about-content {
    padding: 0 40px 80px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 60px 0 32px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
  }
  
  /* Vision Section */
  .vision, .why, .future {
    margin-bottom: 60px;
  }
  
  .honesty {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0;
  }
  
  @media (min-width: 768px) {
    .honesty {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .honesty-item {
    display: flex;
    gap: 16px;
    background: rgba(30, 30, 30, 0.4);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 4px;
  }
  
  .honesty-item strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
  }
  
  .honesty-item p {
    color: #c0c0c0;
    font-size: 1rem;
  }
  
  .why p, .future p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #d0d0d0;
  }
  
  .future-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
  }
  
  .future-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: #aaa;
    font-size: 1.05rem;
  }
  
  .future-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
  }
  
  .note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
  }
  
  /* CTA */
  .about-cta {
    padding: 100px 40px;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #000, #1a0000);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: white;
    border-radius: 52px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
    cursor: pointer;
    box-shadow: 
      0 10px 30px rgba(255, 0, 0, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }
  
  .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);
  }
  
  /* Waitlist Modal */
  .waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .waitlist-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 40, 40, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
  
  .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .close-modal:hover {
    color: var(--red);
  }
  
  .modal-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
  }
  
  .modal-content p {
    color: #b0b0b0;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .waitlist-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: border 0.3s;
  }
  
  .waitlist-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(255, 40, 40, 0.2);
  }
  
  .waitlist-submit {
    background: var(--red);
    color: white;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .waitlist-submit:hover {
    background: #cc2222;
  }
  
  .success-message {
    text-align: center;
    color: #00cc66;
    font-weight: 600;
    margin-top: 16px;
    display: none;
  }
  
  /* Footer */
  .about-footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      left: 24px;
      right: 24px;
      padding: 0 20px;
    }

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

    .modal-content {
      padding: 30px;
      width: 95%;
    }
  }

  /* Card Styles */
  .card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff8787);
    opacity: 0.7;
  }

  .card-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
  }

  .card-content h2,
  .card-content h3 {
    margin-bottom: 15px;
  }

  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }

  .card-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 12px;
  }

  .card-content p {
    margin-bottom: 16px;
    color: #d0d0d0;
    font-size: 1.1rem;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
  }

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

    .card {
      padding: 30px;
    }
  }

  .small-card {
    padding: 25px;
  }

  /* Updated future list styling */
  .future-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
  }

  .future-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    color: #d0d0d0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .future-list li:last-child {
    border-bottom: none;
  }

  .future-list li i {
    position: absolute;
    left: 0;
    color: var(--red);
    margin-top: 3px;
  }