.u-section-1 .u-sheet-1 {
  min-height: 961px;
}

.u-section-1 .u-custom-html-1 {
  margin-bottom: 19px;
  background-image: none;
  height: auto;
  min-height: 896px;
  margin-top: 46px;
}.u-section-2 .u-sheet-1 {
  min-height: 26px;
}

.u-section-2 .u-custom-html-1 {
  margin-bottom: 0;
  margin-top: 0;
}BEAT CRAFT
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    
    
    
    
    
    
    
    
    
    
    
    
    
    --radius: 10px;
    
  }
  html { scroll-behavior: smooth; }
  body {
    background: #0d0f0e;
    color: #e8ede9;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 4rem;
  }
  .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 560px;
  }
  .logo {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #e8ede9;
    margin-bottom: 0.5rem;
  }
  .logo span { color: #1D9E75; }
  .tagline {
    font-size: 1rem;
    color: #8fa898;
    line-height: 1.6;
  }
  .badge {
    display: inline-block;
    background: rgba(29,158,117,0.15);
    color: #5DCAA5;
    border: 1px solid rgba(29,158,117,0.3);
    border-radius: 100px;
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    padding: 4px 12px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  .app {
    width: 100%;
    max-width: 640px;
    background: #161a18;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.75rem;
  }
  .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .card {
    background: #1d2220;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 14px 16px;
  }
  .label {
    font-size: 10px;
    font-weight: 500;
    color: #556660;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .label i { color: #1D9E75; font-size: 14px; }
  select {
    width: 100%;
    background: #0d0f0e;
    color: #e8ede9;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%231D9E75' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
  }
  select:focus { outline: 1px solid #1D9E75; }
  .row { margin-bottom: 12px; }
  .slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .slider-val {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #1D9E75;
    min-width: 52px;
    text-align: right;
  }
  input[type=range] {
    flex: 1;
    accent-color: #1D9E75;
    cursor: pointer;
  }
  .section-title {
    font-size: 10px;
    font-weight: 500;
    color: #556660;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .section-title i { color: #1D9E75; font-size: 13px; }
  .toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }
  .toggle {
    padding: 6px 14px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #1d2220;
    color: #8fa898;
    cursor: pointer;
    transition: all 0.15s;
  }
  .toggle.active {
    background: #1D9E75;
    border-color: #1D9E75;
    color: #fff;
  }
  .viz {
    background: #0d0f0e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    height: 72px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  canvas#waveform { width: 100%; height: 100%; display: block; }
  .viz-idle {
    font-size: 12px;
    color: #556660;
    font-family: 'Space Mono', monospace;
    position: absolute;
    pointer-events: none;
  }
  .beat-row-label {
    font-size: 10px;
    font-family: 'Space Mono', monospace;
    color: #556660;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
  .beat-grid {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: 3px;
    margin-bottom: 4px;
  }
  .beat-cell {
    height: 26px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0d0f0e;
    cursor: pointer;
    transition: background 0.1s;
  }
  .beat-cell.on { background: #1D9E75; border-color: #0F6E56; }
  .beat-cell.active { outline: 2px solid #EF9F27; outline-offset: 1px; }
  .actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .btn-play {
    flex: 1;
    padding: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #1D9E75;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .btn-play:hover { background: #0F6E56; }
  .btn-play:active { transform: scale(0.98); }
  .btn-play.playing { background: #D85A30; }
  .btn-icon {
    padding: 14px 16px;
    background: #1d2220;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    cursor: pointer;
    color: #8fa898;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
  }
  .btn-icon:hover { background: #0d0f0e; color: #e8ede9; }
  .status {
    font-size: 12px;
    color: #556660;
    font-family: 'Space Mono', monospace;
    margin-top: 10px;
    text-align: center;
    min-height: 16px;
  }
  .page-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 12px;
    color: #556660;
  }
  .page-footer a { color: #1D9E75; text-decoration: none; }
  @media (max-width: 480px) {
    .grid2 { grid-template-columns: 1fr; }
    .logo { font-size: 1.5rem; }
  } 