  :root {
    --bg-dark: #0A0E27;
    --bg-card: #020515;
    --bg-secondary: #0b0f1f;
    --primary-yellow: #f9d423;
    --text-gray: rgba(255, 255, 255, 0.65);
    --text-muted: #666e80;
    --border-subtle: rgba(255, 255, 255, 0.08);
  }

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

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    line-height: 1.6;
  }

  /* Global Container Utility */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* HEADER & NAVBAR */
  .header {
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .navbar {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Nav Left */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .score-badge-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .score-glow {
    position: absolute;
    inset: 0;
    background: var(--primary-yellow);
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.18;
    transition: opacity 0.3s ease;
  }

  .score-badge-wrapper:hover .score-glow {
    opacity: 0.35;
  }

  .score-badge {
    width: 56px;
    height: 56px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .score-badge span {
    color: var(--primary-yellow);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: -0.5px;
  }

  .brand-text h2 {
    color: var(--primary-yellow);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
  }

  .brand-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 4px;
  }

  /* Nav Right */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--primary-yellow);
  }

  .join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    padding: 12px 28px;
    border-radius: 999px;
    box-shadow: 0 0 25px rgba(249, 212, 35, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(249, 212, 35, 0.45);
  }

  /* HERO SECTION */
  .hero {
    background-color: var(--bg-dark);
    padding: 80px 0 40px;
  }

  .hero-container {
    text-align: center;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: var(--primary-yellow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .badge span {
    margin-right: 8px;
  }

  h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin: 0;
    letter-spacing: -2px;
    color: #ffffff;
  }

  .highlight {
    display: block;
    background: linear-gradient(180deg, #f0c330 0%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 24px auto;
    max-width: 700px;
  }

  .cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  .btn {
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary {
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
    text-transform: uppercase;
    font-weight: 900;
  }

  .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
  }

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

  /* LOGO BAR */
  .logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 20px 40px;
    flex-wrap: wrap;
  }

  .logo-item {
    color: #ffffff;
    opacity: 0.3;
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
  }

  .logo-item:hover {
    opacity: 0.8;
    transform: translateY(-1px);
  }

  /* STATS SECTION */
  .stats-section {
    width: 100%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 60px 0;
  }

  .stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }

  .stat-box h2 {
    color: var(--primary-yellow);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-box p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
  }

  /* HERO TEXT SECTION */
  .hero-text-section {
    width: 100%;
    background: var(--bg-dark);
    padding: 100px 0;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }

  .white-line {
    display: block;
    color: #ffffff;
  }

  .yellow-line {
    display: block;
    color: var(--primary-yellow);
  }

  .hero-content p {
    margin: 0;
    max-width: 780px;
    color: var(--text-gray);
    font-size: 1.25rem;
    line-height: 1.7;
  }

  /* BENTO GRID FEATURES SECTION */
  .features-section {
    width: 100%;
    background: var(--bg-dark);
    padding: 40px 0 100px;
  }

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

  .bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 212, 35, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }

  .bento-card.span-2 {
    grid-column: span 2;
  }

  .bento-card.highlighted {
    border-color: rgba(249, 212, 35, 0.5);
    background: linear-gradient(135deg, #0d1230 0%, var(--bg-card) 100%);
  }

  .icon-box {
    width: 56px;
    height: 56px;
    background: rgba(249, 212, 35, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }

  .icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary-yellow);
    stroke-width: 2;
  }

  .bento-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .bento-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  .feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(249, 212, 35, 0.15);
    color: var(--primary-yellow);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .feature-badge.in-progress {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
  }

  /* CTA CARD SECTION */
  .cta-section {
    padding: 60px 0 100px;
    background: var(--bg-dark);
  }

  .container-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 70px 40px;
    text-align: center;
    width: 100%;
    max-width: 900px;
  }

  .cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
  }

  .cta-title span {
    color: var(--primary-yellow);
  }

  .cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px auto;
  }

  .cta-action-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .cta-button {
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(249, 212, 35, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(249, 212, 35, 0.4);
  }

  .cta-notice {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .check-icon {
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }

  /* FOOTER */
  .site-footer {
    background-color: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 1 1 300px;
    max-width: 400px;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .logo-circle {
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-yellow);
  }

  .brand-name {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    display: block;
  }

  .brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
  }

  .footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
  }

  .footer-links {
    flex: 0 1 180px;
  }

  .link-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #ffffff;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 14px;
  }

  .footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--primary-yellow);
  }

  /* SUB-FOOTER */
  .sub-footer {
    background-color: var(--bg-dark);
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
  }

  .sub-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin: 0;
  }

  .social-icons {
    display: flex;
    gap: 14px;
  }

  .social-dot {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .social-dot:hover {
    background-color: var(--primary-yellow);
    color: var(--bg-dark);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 212, 35, 0.3);
  }


  /* RESPONSIVE MEDIA QUERIES */
  @media (max-width: 1100px) {
    .features-bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }

    .navbar {
      height: auto;
      padding: 20px 0;
      flex-direction: column;
      gap: 20px;
    }

    .nav-right {
      flex-direction: column;
      gap: 16px;
    }

    .logo-bar {
      gap: 30px;
    }

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

    .bento-card.span-2 {
      grid-column: span 1;
    }
  }



  /* ---  pricing ---*/

  /* Pricing Section Styles */
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .pricing-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 212, 35, 0.4);
  }

  .pricing-card.popular {
    border-color: #f9d423;
    box-shadow: 0 0 25px rgba(249, 212, 35, 0.15);
    background-color: #111c35;
  }

  .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9d423;
    color: #0b1329;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .plan-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 6px;
  }

  .plan-subtitle {
    color: #94a3b8;
    font-size: 0.85rem;
    min-height: 36px;
  }

  .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0;
  }

  .price span {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 400;
  }

  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
  }

  .plan-features li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plan-features li svg {
    width: 16px;
    height: 16px;
    color: #f9d423;
    flex-shrink: 0;
  }

  .pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .pricing-btn.primary {
    background-color: #f9d423;
    color: #0b1329;
  }

  .pricing-btn.primary:hover {
    background-color: #ffe047;
    box-shadow: 0 4px 15px rgba(249, 212, 35, 0.3);
  }

  .pricing-btn.secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pricing-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
  }

  /* Responsive Grid for Mobile */
  @media (max-width: 992px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 450px;
      margin: 0 auto;
    }
  }

  .plan-header h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  /* Gives the popular PRO title a signature gold glow */
  .pricing-card.popular .plan-header h3 {
    color: #f9d423;
    text-shadow: 0 0 12px rgba(249, 212, 35, 0.4);
  }