  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-bottom: 2px solid var(--yellow);
    position: sticky;
    top: 0;
    background: var(--black);
    z-index: 100;
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--yellow);
  }

  .logo span { color: var(--white); }

  nav a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--white);
    transition: all 0.2s;
  }

  nav a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: 'ACE';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40vw;
    color: rgba(255,224,0,0.04);
    position: absolute;
    right: -5vw;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 1;
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 11rem);
    line-height: 0.95;
    letter-spacing: 2px;
    animation: fadeUp 0.7s ease 0.1s both;
  }

  .hero h1 .accent {
    color: var(--yellow);
    display: inline-block;
    cursor: pointer;
  }
  .hero h1 .accent:hover {
    animation: pulse 0.6s ease infinite;
  }
  .hero h1 .strike {
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 6px;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: #aaa;
    max-width: 520px;
    margin: 2rem 0 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.7s ease 0.2s both;
  }

  .hero-sub strong { color: var(--white); }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.3s both;
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s, box-shadow 0.15s;
  }

  .btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 3px 3px 0 var(--red); }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s;
  }

  .btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

  /* TICKER */
  .ticker {
    background: var(--yellow);
    color: var(--black);
    padding: 0.7rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .ticker-inner {
    display: inline-block;
    animation: ticker 20s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .ticker-inner span { margin: 0 2rem; }

  /* ABOUT */
  .about {
    padding: 6rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.5rem;
  }

  .about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    max-width: 680px;
    margin: 0 auto;
  }

  .about p strong { color: var(--white); }

  /* FOUNDER */
  .founder {
    background: var(--gray);
    padding: 6rem 2.5rem;
  }

  .founder-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
  }

  .founder-card {
    background: var(--yellow);
    color: var(--black);
    padding: 2rem 1.5rem;
    text-align: center;
    width: 180px;
    flex-shrink: 0;
  }

  .founder-avatar {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }

  .founder-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .founder-card p {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-top: 0.25rem;
  }

  .founder-text .section-label { text-align: left; }

  .founder-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  .founder-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 1rem;
  }

  .founder-text p strong { color: var(--white); }

  /* CTA */
  .cta {
    padding: 7rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,224,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 9rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }

  .cta h2 .yellow { color: var(--yellow); }

  .cta p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .cta-fine {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* FOOTER */
  footer {
    border-top: 2px solid var(--yellow);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
  }

  footer .logo { font-size: 1.3rem; }

  footer p {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 1px;
  }

  /* NAV DROPDOWN & CART */
.nav-item { position:relative; display:flex; align-items:center; }
.nav-btn { background:transparent; border:none; color:var(--white); font-family:'Space Mono',monospace; font-size:0.68rem; letter-spacing:1px; text-transform:uppercase; padding:0 1rem; height:60px; cursor:pointer; white-space:nowrap; transition:color 0.15s; display:flex; align-items:center; gap:0.3rem; }
.nav-btn:hover { color:var(--yellow); }
.nav-drop { display:none; position:absolute; top:60px; left:0; min-width:340px; background:#111; border:1px solid #2a2a2a; border-top:2px solid var(--yellow); z-index:300; box-shadow:0 16px 40px rgba(0,0,0,0.7); }
.nav-drop.open { display:block; }
.drop-inner { padding:1.25rem; }
.drop-label { font-family:'Space Mono',monospace; font-size:0.6rem; letter-spacing:3px; text-transform:uppercase; color:var(--yellow); margin-bottom:1rem; }
.drop-row { display:flex; justify-content:space-between; align-items:center; padding:0.75rem; border:1px solid #1e1e1e; margin-bottom:0.5rem; cursor:pointer; transition:background 0.15s,border-color 0.15s; gap:1rem; }
.drop-row:hover { background:#1a1a1a; border-color:#333; }
.drop-row:last-child { margin-bottom:0; }
.featured-row { border-color:rgba(255,224,0,0.2); }
.drop-name { font-family:'DM Sans',sans-serif; font-size:0.85rem; font-weight:600; color:var(--white); margin-bottom:0.2rem; }
.drop-desc { font-family:'Space Mono',monospace; font-size:0.58rem; color:#555; }
.drop-price { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; color:var(--yellow); white-space:nowrap; }
.drop-add { background:var(--yellow); color:var(--black); font-family:'Space Mono',monospace; font-size:0.6rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:0.4rem 0.75rem; border:none; cursor:pointer; white-space:nowrap; }
.drop-add:hover { opacity:0.85; }
.cart-item { display:flex; justify-content:space-between; align-items:center; padding:0.9rem 0; border-bottom:1px solid #1e1e1e; gap:1rem; }
.cart-item-name { font-family:'DM Sans',sans-serif; font-size:0.85rem; color:var(--white); flex:1; }
.cart-item-price { font-family:'Bebas Neue',sans-serif; font-size:1.2rem; color:var(--yellow); white-space:nowrap; }
.cart-item-remove { background:transparent; border:none; color:#444; cursor:pointer; font-size:0.9rem; padding:0.2rem 0.4rem; transition:color 0.15s; }
.cart-item-remove:hover { color:#FF2D2D; }

  /* RESPONSIVE - LAYOUT */
  @media (max-width: 600px) {
    .founder-inner { grid-template-columns: 1fr; }
    .founder-card { width: 100%; }
    nav { padding: 1rem 1.5rem; }
    .hero, .about, .offers, .pricing, .founder, .cta { padding-left: 1.5rem; padding-right: 1.5rem; }
  }

@media (max-width:820px) { #nav-links { display:none; } }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr !important; }
  .hero img { max-width: 320px !important; }
}
