  :root {
    --bg: #0e0d0d;
    --bg2: #141313;
    --fg: #f2f0ee;
    --fg-dim: #9a9590;
    --blue: oklch(65% 0.22 240);
    --amber: oklch(70% 0.18 65);
    --green: oklch(65% 0.22 145);
    --white: #f2f0ee;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    backdrop-filter: blur(12px);
    background: rgba(14,13,13,0.7);
    border-bottom: 1px solid rgba(242,240,238,0.06);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.08em;
    color: var(--fg);
    text-decoration: none;
  }
  .nav-logo span { color: var(--blue); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--fg-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--fg); }

  .nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
  }
  .nav-cta:hover { opacity: 0.88; color: #fff !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 100px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 24px;
    display: none;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
  }
  .hero-title em {
    font-style: normal;
    color: var(--blue);
  }

  .hero-sub {
    font-size: 19px;
    color: var(--fg-dim);
    max-width: 400px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.15s;
  }
  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(242,240,238,0.2);
    color: var(--fg);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { border-color: rgba(242,240,238,0.5); transform: translateY(-1px); }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  #hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0 0 0 200px;
  }

  /* Drum grid decoration */
  .drum-grid-bg {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: grid;
    grid-template-columns: repeat(3, 48px);
    grid-template-rows: repeat(2, 48px);
    gap: 12px;
    opacity: 0.08;
    pointer-events: none;
  }
  .drum-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fg);
  }


  /* ── PRODUCTS ── */
  .section { padding: 80px 80px; }
  .section-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 64px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .product-card-xl {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .product-card-xl .product-card-img-placeholder {
    aspect-ratio: unset;
    min-height: 340px;
  }

  .tag-xl { background: rgba(190,100,255,0.15); color: oklch(70% 0.22 290); }

  /* XL Quad pad — 2×2 */
  .pad-visual-quad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
    padding: 40px;
    background: var(--card-color, #6a1aaa);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
  }
  .pad-visual-quad::after {
    content: 'TAP DRUMS';
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(0,0,0,0.4);
  }
  .pad-dot-xl {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #111;
    box-shadow: inset 0 3px 8px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04);
  }

  @media (max-width: 900px) {
    .product-card-xl { grid-template-columns: 1fr; }
    .product-card-xl .product-card-img-placeholder { min-height: 260px; }
  }

  .product-card {
    background: var(--bg2);
    border: 1px solid rgba(242,240,238,0.07);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
  }
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242,240,238,0.16);
  }

  .product-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }

  .product-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1919, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Simulated drum pad for placeholder */
  .pad-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    padding: 40px 60px;
    background: var(--card-color, #2a5fcc);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
  }
  .pad-visual::after {
    content: 'TAP DRUMS';
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(0,0,0,0.4);
  }
  .pad-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04);
  }

  .product-card-body {
    padding: 32px 36px 36px;
  }

  .product-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
  }
  .tag-silent { background: rgba(99,147,255,0.15); color: var(--blue); }
  .tag-click { background: rgba(245,165,80,0.15); color: var(--amber); }

  .product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    line-height: 1;
  }

  .product-desc {
    color: var(--fg-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
  }

  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fg-dim);
  }
  .feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .dot-blue { background: var(--blue); }
   .dot-green { background: var(--green); }
  .dot-amber { background: var(--amber); }

  .product-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    align-items: center;
  }
  .color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(242,240,238,0.08);
    cursor: pointer;
    transition: transform 0.15s;
  }
  .color-swatch:hover { transform: scale(1.2); }
  .color-swatch.active { border-color: rgba(242,240,238,0.6); }

  .product-buy-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .buy-btn:hover { opacity: 0.85; transform: translateY(-1px); }
  .buy-amazon { background: #FF9900; color: #111; }
  .buy-etsy { background: #F56400; color: #fff; }

  /* ── WHY ── */
  .why-section {
    padding: 80px 80px;
    background: var(--bg2);
    border-top: 1px solid rgba(242,240,238,0.06);
    border-bottom: 1px solid rgba(242,240,238,0.06);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
  }

  .why-item {
    position: relative;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .why-desc {
    font-size: 14px;
    color: var(--fg-dim);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── REVIEWS ── */
  .reviews-section { padding: 80px 80px; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .review-card {
    background: var(--bg2);
    border: 1px solid rgba(242,240,238,0.07);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: border-color 0.25s;
  }
  .review-card:hover { border-color: rgba(242,240,238,0.15); }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
  }
  .star {
    width: 14px;
    height: 14px;
    color: var(--amber);
  }

  .review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg-dim);
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: 0.02em;
  }
  .review-source {
    font-size: 12px;
    color: var(--fg-dim);
    margin-top: 2px;
  }

  .review-quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 0.8;
    color: rgba(242,240,238,0.04);
    position: absolute;
    top: 20px;
    right: 24px;
  }

  /* ── WHO ── */
  .who-section {
    padding: 80px 80px;
    background: var(--bg2);
    border-top: 1px solid rgba(242,240,238,0.06);
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .who-card {
    padding: 40px 36px;
    border: 1px solid rgba(242,240,238,0.07);
    background: var(--bg);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .who-card:hover { background: #161515; }

  .who-card-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
  }

  .who-card-desc {
    font-size: 14px;
    color: var(--fg-dim);
    line-height: 1.65;
    font-weight: 300;
  }

  .who-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .who-card:hover .who-card-accent { opacity: 1; }

  /* ── CTA ── */
  .cta-section {
    padding: 80px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-bg-dots {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    opacity: 0.03;
    pointer-events: none;
  }
  .cta-bg-dot {
    border-radius: 50%;
    background: var(--fg);
    aspect-ratio: 1;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .cta-title em {
    font-style: normal;
    color: var(--blue);
  }

  .cta-sub {
    font-size: 18px;
    color: var(--fg-dim);
    max-width: 480px;
    margin: 0 auto 48px;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .cta-btn-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .cta-btn-big:hover { opacity: 0.85; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    padding: 40px 80px;
    border-top: 1px solid rgba(242,240,238,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--fg-dim);
  }
  .footer-copy {
    font-size: 13px;
    color: var(--fg-dim);
    opacity: 0.5;
  }

  /* ── ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Tap animation on pads */
  @keyframes tapPulse {
    0% { transform: scale(1); }
    40% { transform: scale(0.88); box-shadow: inset 0 3px 8px rgba(0,0,0,0.7), 0 0 0 rgba(0,0,0,0); }
    100% { transform: scale(1); }
  }
  .pad-dot.tapping {
    animation: tapPulse 0.18s ease-out;
  }

  .amazon-button {
    background: var(--amber);
    color:#000;
  }

  .tiktok-button {
    background: var(--blue);
    color:#000;
  }
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    a.see-the-lineup { display: none; }
    .hero-title { margin-bottom:0; }
    .hero-sub { margin-bottom:0; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { aspect-ratio: 2 / 3; width: 75%; margin: 0 auto; }
    #hero-canvas { border-radius: 20px; }
    .hero-left { padding: 80px 24px 20px; }
    .section { padding: 50px 24px; }
    .products-grid, .why-grid, .reviews-grid, .who-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 100px 24px; }
    footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }
  }