:root {
    --navy: #0a1428;
    --deep: #0f1f3d;
    --green: #39ff8e;
    --green-dark: #00cc66;
    --text: #f0f4f8;
    --muted: #a3b8cc;
    --line: #1e2e4a;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
  }
  
  h1, h2, h3, .section-title, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 0;
  }
  
  /* Consistent logo with subtitle */
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  
  .logo {
    font-size: 2.15rem !important;
    line-height: 1.05;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
  }
  
  .logo span {
    color: var(--green);
  }
  
  .subtitle {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-left: 3px;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .nav a:hover,
  .nav a.active {
    color: var(--green);
  }
  
  .nav .btn {
    padding: 10px 26px;
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .nav .btn.active {
    background: var(--green-dark);
  }
  
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
  }
  
  .btn-primary {
    background: var(--green);
    color: var(--navy);
  }
  
  .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
  }
  
  .hero {
    background: linear-gradient(rgba(10,20,40,0.85), rgba(10,20,40,0.9)), url('Derek4NHBackground.png') center/cover no-repeat;
    padding: 160px 0 100px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--green);
  }
  
  .section-title a {
    color: inherit;
    text-decoration: none;
  }
  
  .section-title a:hover {
    color: var(--green-dark);
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: var(--deep);
    padding: 2.25rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  .card h3 {
    margin: 1.25rem 0 1rem;
    color: var(--green);
    font-size: 1.35rem;
  }
  
  .footer {
    background: var(--deep);
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--line);
  }
  
  .footer .logo {
    font-size: 1.75rem;
  }
  
  .disclaimer {
    font-size: 0.8rem;
    margin-top: 2rem;
    color: var(--muted);
    line-height: 1.5;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .header-inner {
      flex-direction: column;
      padding: 1rem 0;
    }
    
    .nav {
      flex-direction: column;
      width: 100%;
      text-align: center;
      gap: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
    }
    
    .nav .btn {
      width: auto;
      align-self: center;
    }
    
    .nav a {
      font-size: 1.15rem;
    }
    
    .hero h1 {
      font-size: 3.2rem;
    }
    
    .hero {
      padding: 120px 0 80px;
    }

    .logo-container {
      align-items: center;
    }
    .logo {
      font-size: 1.95rem !important;
    }
    .subtitle {
      font-size: 0.68rem;
      margin-left: 0;
    }
  }

