* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #0f1420;
    color: #e2e8f0;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* NAV */
  .nav {
    background: #0f1420;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
  }
  
  .logo span {
    color: #4ade80;
  }
  
  .btn-nav {
    background: rgba(74,222,128,0.1);
    color: #4ade80;
    border: 0.5px solid rgba(74,222,128,0.3);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
  }
  
  .btn-nav:hover {
    background: rgba(74,222,128,0.2);
  }
  
  /* HERO */
  .hero {
    padding: 80px 0 60px;
    text-align: center;
  }
  
  .hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .hero-badge {
    display: inline-block;
    background: rgba(74,222,128,0.1);
    color: #4ade80;
    border: 0.5px solid rgba(74,222,128,0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  
  .hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .highlight {
    color: #4ade80;
  }
  
  .hero-sub {
    font-size: 18px;
    color: #6b7a99;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }
  
  .hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: #4ade80;
    color: #0f1420;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background: #22c55e;
    transform: translateY(-1px);
  }
  
  .btn-secondary {
    background: transparent;
    color: #e2e8f0;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    border: 0.5px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
  }
  
  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero-stat {
    background: #1a2235;
    border: 0.5px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px 12px;
  }
  
  .stat-num {
    font-size: 26px;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: -0.02em;
  }
  
  .stat-label {
    font-size: 11px;
    color: #4b5568;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  /* VALUE SECTION */
  .value-section {
    padding: 80px 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  
  .section-label {
    font-size: 11px;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .value-section h2,
  .how-section h2,
  .accuracy-section h2,
  .founding-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  
  .section-sub {
    font-size: 16px;
    color: #6b7a99;
    margin-bottom: 40px;
    max-width: 600px;
  }
  
  .value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }
  
  .value-card {
    background: #1a2a1e;
    border: 0.5px solid rgba(74,222,128,0.2);
    border-radius: 12px;
    padding: 20px;
  }
  
  .value-tag {
    display: inline-block;
    background: rgba(74,222,128,0.15);
    color: #4ade80;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  
  .value-player {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }
  
  .value-team {
    font-size: 12px;
    color: #4b5568;
    margin-bottom: 14px;
  }
  
  .value-prediction {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 4px;
  }
  
  .value-line {
    font-size: 13px;
    color: #6b7a99;
    margin-bottom: 12px;
  }
  
  .value-rec {
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
  }
  
  .value-cta {
    text-align: center;
  }
  
  /* HOW IT WORKS */
  .how-section {
    padding: 80px 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  
  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  
  .how-card {
    background: #1a2235;
    border: 0.5px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 20px;
  }
  
  .how-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .how-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .how-card p {
    font-size: 13px;
    color: #6b7a99;
    line-height: 1.7;
  }
  
  /* ACCURACY */
  .accuracy-section {
    padding: 80px 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  
  .accuracy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  
  .accuracy-card {
    background: #1a2235;
    border: 0.5px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px;
  }
  
  .accuracy-card.active {
    border-color: rgba(74,222,128,0.3);
    background: #1a2a1e;
  }
  
  .acc-round {
    font-size: 13px;
    font-weight: 600;
    color: #6b7a99;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  
  .acc-result, .acc-goals {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .win {
    color: #4ade80;
  }
  
  .pending {
    color: #fbbf24;
  }
  
  /* FOUNDING MEMBER */
  .founding-section {
    padding: 80px 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
  }
  
  .founding-card {
    background: linear-gradient(135deg, #1a2235 0%, #1a2a1e 100%);
    border: 0.5px solid rgba(74,222,128,0.25);
    border-radius: 20px;
    padding: 60px 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .founding-badge {
    display: inline-block;
    background: rgba(251,191,36,0.15);
    color: #fbbf24;
    border: 0.5px solid rgba(251,191,36,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .founding-card h2 {
    margin-bottom: 16px;
  }
  
  .founding-card p {
    font-size: 16px;
    color: #6b7a99;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  
  .founding-card strong {
    color: #4ade80;
  }
  
  .founding-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  
  .price-normal {
    font-size: 18px;
    color: #4b5568;
    text-decoration: line-through;
  }
  
  .price-founding {
    font-size: 24px;
    font-weight: 700;
    color: #4ade80;
  }
  
  .signup-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
  }
  
  .signup-form input {
    flex: 1;
    background: #0f1420;
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: #e2e8f0;
    font-size: 15px;
    min-width: 200px;
    outline: none;
  }
  
  .signup-form input:focus {
    border-color: rgba(74,222,128,0.4);
  }
  
  .signup-form input::placeholder {
    color: #4b5568;
  }
  
  .signup-form button {
    background: #4ade80;
    color: #0f1420;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  
  .signup-form button:hover {
    background: #22c55e;
  }
  
  .signup-fine {
    font-size: 12px;
    color: #4b5568;
  }
  
  /* FOOTER */
  .footer {
    padding: 40px 0;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    text-align: center;
  }
  
  .footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }
  
  .footer-logo span {
    color: #4ade80;
  }
  
  .footer-sub {
    font-size: 13px;
    color: #4b5568;
    margin-bottom: 20px;
  }
  
  .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    font-size: 13px;
    color: #6b7a99;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: #4ade80;
  }
  
  .footer-legal {
    font-size: 11px;
    color: #374151;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .value-cards { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .accuracy-grid { grid-template-columns: 1fr; }
    .founding-card { padding: 36px 24px; }
    .signup-form { flex-direction: column; }
  }
  
  @media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .how-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
  }