FON Home

FON Home by ON Development
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fast or Nothing</title>
<meta name="description" content="Fast or Nothing: Unforgettable luxury and sports car events—speed, style, and community in one place.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap" rel="stylesheet">
<style>
  :root{
    --asphalt:#202020;
    --asphalt-2:#2a2a2d;
    --race-red:#e10600;
    --chrome:#c9cdd3;
    --amber:#ffb100;
    --off-white:#f5f4f0;
    --line: rgba(245,244,240,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--asphalt);
    color:var(--off-white);
    font-family:'Inter', sans-serif;
    line-height:1.6;
    overflow-x:hidden;
  }
  h1,h2,h3, .eyebrow, nav a, .btn{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.03em;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}

  /* Speed-stripe signature: repeated wherever we need a divider */
  .stripes{
    height:14px;
    width:100%;
    background:
      repeating-linear-gradient(
        115deg,
        var(--race-red) 0 34px,
        var(--asphalt) 34px 44px,
        var(--chrome) 44px 58px,
        var(--asphalt) 58px 68px
      );
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  }

  /* NAV */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(11,11,13,0.85);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:76px;
  }
  .brand{display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.25rem;}
  .brand .dot{width:10px; height:10px; background:var(--race-red); border-radius:50%; box-shadow:0 0 10px var(--race-red);}
  .navlinks{display:flex; gap:34px; font-size:0.85rem;}
  .navlinks a{position:relative; padding:6px 0; opacity:0.85; transition:opacity .2s;}
  .navlinks a:hover{opacity:1;}
  .navlinks a::after{
    content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
    background:var(--race-red); transition:width .25s ease;
  }
  .navlinks a:hover::after{width:100%;}
  .navcta{
    background:var(--race-red); color:var(--off-white); padding:10px 20px;
    font-size:0.8rem; font-weight:600; border-radius:2px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%);
  }
  .navtoggle{display:none;}

  /* HERO */
  .hero{
    position:relative;
    min-height:92vh;
    display:flex; align-items:center;
    background:
      radial-gradient(1200px 600px at 80% 20%, rgba(225,6,0,0.18), transparent 60%),
      linear-gradient(180deg, var(--asphalt) 0%, #141416 100%);
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background-image: linear-gradient(rgba(245,244,240,0.035) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(245,244,240,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black, transparent 75%);
  }
  .hero-grid{
    display:grid; grid-template-columns: 1.1fr 0.9fr; gap:40px; align-items:center;
    position:relative; z-index:2;
  }
  .eyebrow{
    color:var(--race-red); font-size:0.85rem; font-weight:600; letter-spacing:0.15em;
    display:flex; align-items:center; gap:10px; margin-bottom:18px;
  }
  .eyebrow .bar{width:28px; height:2px; background:var(--race-red);}
  h1.headline{
    font-size:clamp(2.6rem, 5.5vw, 4.6rem);
    line-height:1.02;
    font-weight:700;
    color:var(--off-white);
  }
  h1.headline .accent{color:var(--race-red);}
  .hero p.lede{
    margin-top:22px; font-size:1.05rem; max-width:480px; color:rgba(245,244,240,0.75);
  }
  .hero-ctas{display:flex; gap:16px; margin-top:34px; flex-wrap:wrap;}
  .btn{
    display:inline-block; padding:15px 30px; font-size:0.85rem; font-weight:600;
    border-radius:2px; transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary{
    background:var(--race-red); color:var(--off-white);
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow:0 8px 24px rgba(225,6,0,0.25);
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 12px 30px rgba(225,6,0,0.35);}
  .btn-ghost{
    border:1px solid var(--line); color:var(--off-white);
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
  }
  .btn-ghost:hover{border-color:var(--chrome); transform:translateY(-2px);}

  .hero-visual{position:relative;}
  .hero-visual img{
    border-radius:4px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  }
  .hero-visual .ring{
    position:absolute; top:-40px; right:-40px; width:220px; opacity:0.5; z-index:0;
  }

  .metrics{
    display:flex; gap:0; margin-top:56px; border-top:1px solid var(--line); padding-top:26px;
  }
  .metric{flex:1; padding-right:24px;}
  .metric .num{font-family:'JetBrains Mono', monospace; font-size:1.6rem; color:var(--amber); font-weight:500;}
  .metric .label{font-size:0.72rem; color:rgba(245,244,240,0.55); text-transform:uppercase; letter-spacing:0.08em; margin-top:4px;}

  /* SECTION SHARED */
  section{padding:110px 0; position:relative;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head .eyebrow{margin-bottom:14px;}
  .section-head h2{font-size:clamp(2rem, 3.6vw, 2.8rem); font-weight:600;}
  .section-head p{margin-top:16px; color:rgba(245,244,240,0.65); font-size:1.02rem;}

  /* ABOUT */
  .about-grid{display:grid; grid-template-columns: 0.9fr 1.1fr; gap:60px; align-items:center;}
  .about-photo{position:relative;}
  .about-photo img{border-radius:4px; box-shadow:0 24px 50px rgba(0,0,0,0.5);}
  .quote-card{
    margin-top:-40px; margin-left:40px; position:relative; z-index:2;
    background:var(--asphalt-2); border:1px solid var(--line); border-left:3px solid var(--race-red);
    padding:22px 26px; max-width:420px;
  }
  .quote-card p{font-family:'Oswald', sans-serif; font-size:1rem; letter-spacing:0.01em; text-transform:none;}
  .quote-card span{display:block; margin-top:10px; font-size:0.78rem; color:var(--chrome); font-family:'Inter', sans-serif;}
  .about-copy p{color:rgba(245,244,240,0.75); margin-bottom:18px; font-size:1.02rem;}
  .about-copy .founder{
    margin-top:28px; padding-top:24px; border-top:1px solid var(--line);
    font-size:0.85rem; color:var(--chrome); font-family:'JetBrains Mono', monospace;
  }

  /* EVENTS */
  .events{background:var(--asphalt-2);}
  .events-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;}
  .event-card{
    background:var(--asphalt); border:1px solid var(--line); padding:32px 26px; position:relative;
    transition: transform .25s ease, border-color .25s ease;
  }
  .event-card:hover{transform:translateY(-6px); border-color:var(--race-red);}
  .event-card .idx{
    font-family:'JetBrains Mono', monospace; color:var(--race-red); font-size:0.8rem; margin-bottom:16px; display:block;
  }
  .event-card h3{font-size:1.2rem; font-weight:600; margin-bottom:10px;}
  .event-card p{color:rgba(245,244,240,0.65); font-size:0.94rem; text-transform:none; font-family:'Inter', sans-serif; letter-spacing:normal;}

  /* EXPERIENCE / FON */
  .experience{position:relative;}
  .exp-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
  .exp-copy p{color:rgba(245,244,240,0.7); margin-bottom:16px; font-size:1.02rem;}
  .exp-visual{position:relative;}
  .exp-visual img{border-radius:4px; box-shadow:0 24px 50px rgba(0,0,0,0.5);}
  .badge-fast{
    position:absolute; bottom:-24px; left:-24px; background:var(--race-red); color:var(--off-white);
    font-family:'Oswald', sans-serif; font-weight:700; font-size:0.95rem; padding:14px 22px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow:0 12px 26px rgba(225,6,0,0.35);
  }

  /* CONTACT */
  .contact{background:var(--asphalt-2);}
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
  .contact-visual img{border-radius:4px;}
  form{display:flex; flex-direction:column; gap:16px;}
  input, textarea{
    background:var(--asphalt); border:1px solid var(--line); color:var(--off-white);
    padding:14px 16px; font-family:'Inter', sans-serif; font-size:0.95rem; border-radius:2px;
  }
  input:focus, textarea:focus{outline:none; border-color:var(--race-red);}
  textarea{min-height:120px; resize:vertical;}
  form .btn{align-self:flex-start; border:none; cursor:pointer; font-family:'Oswald', sans-serif;}

  /* FOOTER */
  footer{padding:50px 0 40px;}
  .foot-grid{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;}
  .foot-brand{display:flex; align-items:center; gap:12px;}
  .foot-brand img{height:34px; width:auto;}
  .social{
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; border:1px solid var(--line); border-radius:50%;
    transition: border-color .2s ease;
  }
  .social:hover{border-color:var(--race-red);}
  .social img{width:16px; height:16px;}
  .copyright{font-size:0.78rem; color:rgba(245,244,240,0.45);}

  @media (max-width: 900px){
    .navlinks{display:none;}
    .hero-grid, .about-grid, .exp-grid, .contact-grid{grid-template-columns:1fr;}
    .quote-card{margin-left:0; margin-top:24px;}
    .events-grid{grid-template-columns:1fr;}
    .metrics{flex-wrap:wrap; gap:24px;}
    .metric{flex: 1 1 40%;}
  }

  @media (prefers-reduced-motion: reduce){
    *{transition:none !important;}
  }
</style>
</head>
<body>

<header>
  <nav class="wrap">
    <a href="#" class="brand"><span class="dot"></span> FAST OR NOTHING</a>
    <div class="navlinks">
      <a href="#">Home</a>
      <a href="#aboutus">About Us</a>
      <a href="#events">Events</a>
      <a href="#experience">Experience</a>
    </div>
    <a href="https://fon-server.web.app/" class="navcta">Web App</a>
  </nav>
</header>

<section class="hero">
  <div class="wrap hero-grid">
    <div>
      <div class="eyebrow"><span class="bar"></span> DRAG &amp; TimeAttack &amp; HALF MILE &amp; ROLL RACE EVENTS</div>
      <h1 class="headline">Speed is a language.<br>We speak it <span class="accent">fluently.</span></h1>
      <p class="lede">Fast or Nothing brings the world's most iconic luxury and sports cars together for one reason: to celebrate speed, style, and the community built around them.</p>
      <div class="hero-ctas">
        <a href="#events" class="btn btn-primary">Events</a>
        <a href="https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://apps.apple.com/us/app/fast-or-nothing/id6737719023%3Fl%3Dzh-Hant-TW&ved=2ahUKEwiJ88KkmvGVAxU6vokEHf0pLOUQFnoECBwQAQ&usg=AOvVaw2AIRFW_gZ0WtqlCGRiSAUp" class="btn btn-ghost">Download the App</a>
      </div>
      <div class="metrics">
        <div class="metric"><div class="num">1000+</div><div class="label">Cars on Display</div></div>
        <div class="metric"><div class="num">200+</div><div class="label">MPH</div></div>
        <div class="metric"><div class="num">ALL</div><div class="label">Ages Welcome</div></div>
      </div>
    </div>
    <div class="hero-visual">
      <img src="https://fastornothing.com/wp-content/uploads/2026/07/Hero_Image.webp" alt="Fast or Nothing car event">
    </div>
  </div>
</section>

<div class="stripes"></div>

<section id="aboutus">
  <div class="wrap about-grid">
    <div class="about-photo">
      <img src="https://fastornothing.com/wp-content/uploads/2026/07/FonPeople.png" alt="Fast or Nothing community">
      <div class="quote-card">
        <p>"Fast or Nothing was built for people who feel most alive with an engine roaring beside them."</p>
        <span>— Osvaldo Friger, Founder</span>
      </div>
    </div>
    <div class="about-copy">
      <div class="eyebrow"><span class="bar"></span> ABOUT US</div>
      <h2>Where thrill-seekers of every age find their lane.</h2>
      <p>Our Half Mile &amp; Roll Race events are built for anyone who feels the pull of a revving engine — whether you're behind the wheel or cheering from the sidelines.</p>
      <p>Watch high-speed runs unfold, join friendly competitions, and feel the rush that comes from being surrounded by people who love cars as much as you do.</p>
      <div class="founder">FOUNDED BY LATIN ACTOR &amp; ENTREPRENEUR OSVALDO FRIGER</div>
    </div>
  </div>
</section>

<div class="stripes"></div>

<section id="events" class="events">
  <div class="wrap">
    <div class="section-head">
      <div class="eyebrow"><span class="bar"></span> EVENTS</div>
      <h2>Not just a race. A whole scene.</h2>
      <p>Every FON event pairs the roar of engines with the energy of a real community gathering — built for racers, families, and everyone in between.</p>
    </div>
    <div class="events-grid">
      <div class="event-card">
        <span class="idx">01 // TRACK</span>
        <h3>High-Speed Racing</h3>
        <p>Watch the world's most iconic sports and luxury cars take the line, engine to engine.</p>
      </div>
      <div class="event-card">
        <span class="idx">02 // GROUNDS</span>
        <h3>Food &amp; Community</h3>
        <p>Food trucks, gathering spaces, and a shared love of cars that turns strangers into a crew.</p>
      </div>
      <div class="event-card">
        <span class="idx">03 // FAMILY</span>
        <h3>Kids' Area</h3>
        <p>A dedicated area so the little ones can enjoy the day just as much as the adults do.</p>
      </div>
    </div>
  </div>
</section>

<section id="experience" class="experience">
  <div class="wrap exp-grid">
    <div class="exp-copy">
      <div class="eyebrow"><span class="bar"></span> IT'S JUST FON</div>
      <h2>Speed meets sophistication.</h2>
      <p>Buckle up for an experience built around legendary and sports cars, unforgettable moments, and a crowd that shows up for the love of the machine.</p>
      <p>This is a motor enthusiast's paradise — come immerse yourself in a world where speed and luxury meet, every single time.</p>
      <a href="#events" class="btn btn-primary">Join the Next Event</a>
    </div>
    <div class="exp-visual">
      <img src="https://fastornothing.com/wp-content/uploads/2026/07/fast.png" alt="Fast or Nothing experience">
      <div class="badge-fast">IT'S JUST FON</div>
    </div>
  </div>
</section>

<div class="stripes"></div>

<section class="contact" id="contact">
  <div class="wrap contact-grid">
    <div class="contact-visual">
      <img src="https://fastornothing.com/wp-content/uploads/2024/11/IMG_6531.jpg" alt="Contact Fast or Nothing">
    </div>
    <div>
      <div class="eyebrow"><span class="bar"></span> CONTACT US</div>
      <h2>Get in the loop.</h2>
      <p style="margin-top:16px; color:rgba(245,244,240,0.65); text-transform:none; font-family:'Inter',sans-serif;">Questions about the next event, partnerships, or the app? Send us a message.</p>
      <form style="margin-top:28px;">
        <input type="text" placeholder="Your name" required>
        <input type="email" placeholder="Your email" required>
        <textarea placeholder="Your message" required></textarea>
        <button type="submit" class="btn btn-primary">Send Message</button>
      </form>
    </div>
  </div>
</section>

<footer>
  <div class="wrap foot-grid">
    <div class="foot-brand">
      <img src="https://fastornothing.com/wp-content/uploads/2024/11/FON-House-Logo-1.jpeg" alt="Fast or Nothing logo">
      <span class="copyright">Copyright © 2026 Fast or Nothing. All rights reserved.</span>
    </div>
    <a href="https://www.instagram.com/fastornothing/" class="social" aria-label="Instagram">
      <img src="https://fastornothing.com/wp-content/uploads/2026/07/Instagra.jpg">
    </a>
  </div>
</footer>

</body>
</html>