<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width,initial-scale=1" />
  <title>6-Speed Esports — Official</title>
  <meta name="description" content="6-Speed Esports — Rocket League org. Chill competition, good vibes, real passion. Join our Discord to connect, compete, and try out." />

  <!-- Open Graph -->
  <meta property="og:title" content="6-Speed Esports" />
  <meta property="og:description" content="Chill competition, good vibes, real passion. Join our Discord to connect, compete, and try out." />
  <meta property="og:type" content="website" />

  <style>
    :root{
      --bg: #070A12;
      --panel: rgba(255,255,255,.09);
      --panel2: rgba(255,255,255,.13);
      --line: rgba(255,255,255,.16);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.70);
      --muted2: rgba(255,255,255,.55);
      --blue: #1F5BFF;
      --blue2:#3A86FF;
      --glow: rgba(31,91,255,.35);
      --radius: 18px;
      --shadow: 0 20px 60px rgba(0,0,0,.55);
      --max: 1100px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(900px 500px at 15% 10%, rgba(31,91,255,.22), transparent 65%),
        radial-gradient(800px 500px at 85% 30%, rgba(58,134,255,.18), transparent 70%),
        linear-gradient(180deg, #070A12, #050711 55%, #04050B);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .wrap{max-width:var(--max); margin:0 auto; padding:24px}

    /* Top nav */
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:14px 18px;
      border:1px solid var(--line);
      background: rgba(0,0,0,.28);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      box-shadow: 0 10px 40px rgba(0,0,0,.35);
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 240px;
    }
    .brand img{
      width:40px; height:40px; border-radius:12px;
      background: rgba(255,255,255,.06);
      padding:6px;
      border:1px solid rgba(255,255,255,.10);
    }
    .brand .title{font-weight:800; letter-spacing:.3px}
    .brand .tag{font-size:12px; color:var(--muted2); margin-top:2px}

    .nav-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
    .btn{
      display:inline-flex; align-items:center; gap:10px;
      padding:11px 14px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--text);
      font-weight:700;
      transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.22);
    }
    .btn.primary{
      background: linear-gradient(135deg, var(--blue), var(--blue2));
      border-color: rgba(255,255,255,.14);
      box-shadow: 0 18px 55px rgba(31,91,255,.35);
    }
    .btn.primary:hover{
      background: linear-gradient(135deg, #1B54F5, #5A9DFF);
      box-shadow: 0 22px 70px rgba(31,91,255,.42);
    }
    .btn.ghost{background: rgba(0,0,0,.18)}
    .btn svg{width:18px; height:18px; opacity:.95}

    /* Hero */
    .hero{
      margin-top:18px;
      border-radius: calc(var(--radius) + 6px);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
      position:relative;
      background: #0B1022;
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background-image: url("/6_Speed_Banner.png");
      background-size: cover;
      background-position: center;
      filter: saturate(1.10) contrast(1.08) brightness(1.05);
      opacity: .98;
      transform: scale(1.02);
    }
    /* lighter global overlay so the banner stays vibrant */
    .hero::after{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(
          90deg,
          rgba(5,7,17,.35) 0%,
          rgba(5,7,17,.25) 35%,
          rgba(5,7,17,.15) 65%,
          rgba(5,7,17,.08) 100%
        );
      pointer-events:none;
    }

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      padding:38px 30px;
    }
    @media (max-width: 900px){
      .hero-inner{grid-template-columns: 1fr; padding:22px 16px}
      .nav{padding:12px 14px}
      .brand{min-width: unset}
    }

    /* NEW: readable left panel without killing the banner */
    .hero-content{
      position: relative;
      padding: 26px 28px;
      border-radius: 22px;
      background:
        linear-gradient(
          180deg,
          rgba(10,14,28,.65),
          rgba(10,14,28,.45)
        );
      backdrop-filter: blur(6px);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.10),
        0 25px 70px rgba(0,0,0,.45);
    }
    @media (max-width: 900px){
      .hero-content{padding:20px 18px}
    }

    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.80);
      font-size: 12px;
      letter-spacing:.4px;
      width: fit-content;
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background: #45FF9A;
      box-shadow: 0 0 0 4px rgba(69,255,154,.15);
    }

    h1{
      margin:14px 0 10px;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.8px;
      font-weight: 900;
      color:#fff;
      text-shadow: 0 12px 40px rgba(0,0,0,.28);
    }
    .sub{
      margin:0 0 18px;
      font-size: 16px;
      line-height: 1.55;
      max-width: 62ch;
      color: rgba(255,255,255,.88);
    }

    .hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px}
    .note{
      margin-top: 14px;
      color: rgba(255,255,255,.65);
      font-size: 13px;
      line-height: 1.45;
    }

    /* Side card */
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(10px);
      padding:18px;
      align-self: start;
      box-shadow: 0 18px 55px rgba(0,0,0,.28);
    }
    .card h3{margin:0 0 10px; font-size:16px; letter-spacing:.2px}
    .card p{margin:0 0 12px; color: rgba(255,255,255,.80); line-height:1.5; font-size:14px}
    .list{
      margin:0; padding:0; list-style:none; display:grid; gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
    }
    .li svg{width:18px; height:18px; opacity:.95; margin-top:1px}
    .li b{display:block; font-size:13px}
    .li span{display:block; color:rgba(255,255,255,.68); font-size:12px; margin-top:2px}

    /* Footer */
    .footer{
      margin:22px 0 8px;
      display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
      color: rgba(255,255,255,.55);
      font-size: 12px;
      padding: 0 6px;
    }
    .social-row{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .mini{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
    }
    .mini:hover{border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08)}
    .mini svg{width:16px; height:16px; opacity:.92}
  </style>
</head>

<body>
  <div class="wrap">
    <!-- NAV -->
    <header class="nav" role="banner">
      <a class="brand" href="/" aria-label="6-Speed Esports Home">
        <img src="/6_Speed_X_LOGO.png" alt="6-Speed Esports Logo" />
        <div>
          <div class="title">6-Speed Esports</div>
          <div class="tag">Rocket League • Founded 2025</div>
        </div>
      </a>

      <nav class="nav-actions" aria-label="Primary">
        <a class="btn ghost" href="https://x.com/6speedES" target="_blank" rel="noopener">
          <!-- X icon -->
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M16.9 3H20l-6.8 7.8L21 21h-6.2l-4.9-6.3L4.6 21H1.5l7.3-8.4L1 3h6.4l4.4 5.6L16.9 3Z" fill="currentColor"/>
          </svg>
          X (Twitter)
        </a>

        <a class="btn ghost" href="https://www.tiktok.com/@6speedesport" target="_blank" rel="noopener">
          <!-- TikTok-ish note icon -->
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M14 3v10.2a3.8 3.8 0 1 1-3-3.7V6.2c1.2 1 2.7 1.6 4.3 1.7V5.1c-1.1-.1-2.2-.7-3-1.6V3H14Z" fill="currentColor" opacity=".95"/>
            <path d="M14 3c.8 2.2 2.6 3.7 5 4v3c-2.2-.2-4-1.2-5-2.6V3Z" fill="currentColor" opacity=".75"/>
          </svg>
          TikTok
        </a>

        <a class="btn primary" href="https://discord.gg/bHKsfbbxVK" target="_blank" rel="noopener">
          <!-- Discord icon -->
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M19.5 6.7a15.2 15.2 0 0 0-4-1.4l-.5 1a13.6 13.6 0 0 0-3-.3 13.6 13.6 0 0 0-3 .3l-.5-1a15.2 15.2 0 0 0-4 1.4C2.6 9.2 2 11.6 2 14c1.2 1.7 2.7 2.9 4.6 3.7l.9-1.4c-.5-.2-1-.5-1.4-.8l.3-.2c2.8 1.3 5.9 1.3 8.7 0l.3.2c-.4.3-.9.6-1.4.8l.9 1.4c1.9-.8 3.4-2 4.6-3.7 0-2.4-.6-4.8-1.5-7.3Z" fill="currentColor"/>
            <path d="M9.2 13.4c.7 0 1.2-.7 1.2-1.5s-.5-1.5-1.2-1.5-1.2.7-1.2 1.5.5 1.5 1.2 1.5Zm5.6 0c.7 0 1.2-.7 1.2-1.5s-.5-1.5-1.2-1.5-1.2.7-1.2 1.5.5 1.5 1.2 1.5Z" fill="#0B1022"/>
          </svg>
          Join Discord
        </a>
      </nav>
    </header>

    <!-- HERO -->
    <main class="hero" role="main">
      <div class="hero-inner">
        <!-- LEFT: now uses a readable panel -->
        <section class="hero-content">
          <div class="kicker"><span class="dot"></span> Now recruiting</div>

          <h1>Lets Push The Limits!<br/></h1>

          <p class="sub">
            6-Speed Esports is a newly founded org built around the truth that we love Rocket League —
            and we love the community that comes with it.
            <br /><br />
            Founded in 2025, we’re here to bring chill competition, good vibes, and real passion to the scene.
            We’re fans first, players second, and a team always. We’re in this for the long run — supporting upcoming
            talent and growing with the Rocket League scene every step of the way.
          </p>

          <p class="note">
            We’re rolling out the full website over the next few weeks. For now, the Discord is the hub —
            announcements, tryouts, teams, and everything else.
          </p>
        </section>

        <aside class="card" aria-label="How to Join">
          <h3>Interested in joining a 6-Speed team?</h3>
          <p>
            Join our Discord and open a ticket. One of our Rocket League GMs or Leadership will reach out,
            review your tracker, and help you take the next steps.
          </p>

          <ul class="list">
            <li class="li">
              <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
                <path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 14h-2v-2h2v2Zm0-4h-2V6h2v6Z" fill="currentColor"/>
              </svg>
              <div>
                <b>Step 1: Join the Discord</b>
                <span>It’s our main hub while the site rolls out.</span>
              </div>
            </li>

            <li class="li">
              <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
                <path d="M4 4h16v12H7l-3 3V4Zm4 6h8v2H8v-2Zm0-4h8v2H8V6Z" fill="currentColor"/>
              </svg>
              <div>
                <b>Step 2: Create a ticket</b>
                <span>Tell us your region, rank, role, and goals.</span>
              </div>
            </li>

            <li class="li">
              <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
                <path d="M12 2 2 7l10 5 10-5-10-5Zm0 9L2 6v11l10 5 10-5V6l-10 5Z" fill="currentColor"/>
              </svg>
              <div>
                <b>Step 3: GM/Leadership review</b>
                <span>We’ll check tracker info and follow up fast.</span>
              </div>
            </li>
          </ul>

          <div style="margin-top:12px; display:flex; gap:10px; flex-wrap:wrap;">
            <a class="btn primary" href="https://discord.gg/bHKsfbbxVK" target="_blank" rel="noopener" style="width:100%; justify-content:center;">
              Open Discord
            </a>
          </div>
        </aside>
      </div>
    </main>

    <!-- Footer -->
    <footer class="footer" role="contentinfo">
      <div class="social-row">
        <a class="mini" href="https://discord.gg/bHKsfbbxVK" target="_blank" rel="noopener" aria-label="Discord">
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M19.5 6.7a15.2 15.2 0 0 0-4-1.4l-.5 1a13.6 13.6 0 0 0-3-.3 13.6 13.6 0 0 0-3 .3l-.5-1a15.2 15.2 0 0 0-4 1.4C2.6 9.2 2 11.6 2 14c1.2 1.7 2.7 2.9 4.6 3.7l.9-1.4c-.5-.2-1-.5-1.4-.8l.3-.2c2.8 1.3 5.9 1.3 8.7 0l.3.2c-.4.3-.9.6-1.4.8l.9 1.4c1.9-.8 3.4-2 4.6-3.7 0-2.4-.6-4.8-1.5-7.3Z" fill="currentColor"/>
          </svg>
          Discord
        </a>

        <a class="mini" href="https://x.com/6speedES" target="_blank" rel="noopener" aria-label="X (Twitter)">
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M16.9 3H20l-6.8 7.8L21 21h-6.2l-4.9-6.3L4.6 21H1.5l7.3-8.4L1 3h6.4l4.4 5.6L16.9 3Z" fill="currentColor"/>
          </svg>
          X
        </a>

        <a class="mini" href="https://www.tiktok.com/@6speedesport" target="_blank" rel="noopener" aria-label="TikTok">
          <svg viewBox="0 0 24 24" fill="none" aria-hidden="true">
            <path d="M14 3v10.2a3.8 3.8 0 1 1-3-3.7V6.2c1.2 1 2.7 1.6 4.3 1.7V5.1c-1.1-.1-2.2-.7-3-1.6V3H14Z" fill="currentColor" opacity=".95"/>
            <path d="M14 3c.8 2.2 2.6 3.7 5 4v3c-2.2-.2-4-1.2-5-2.6V3Z" fill="currentColor" opacity=".75"/>
          </svg>
          TikTok
        </a>
      </div>

      <div>© <span id="year"></span> 6-Speed Esports • All rights reserved</div>
    </footer>
  </div>

  <script>
    document.getElementById("year").textContent = new Date().getFullYear();
  </script>
</body>
</html>
