/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #1A1A1A;
  --bg-dark-deep: #0D0D0D;
  --bg-cream: rgba(251, 245, 237, 0.94);
  --bg-glass-dark: rgba(26, 26, 26, 0.9);
  --text-on-light: #4F3D35;
  --text-on-light-secondary: #7A6355;
  --text-on-dark: #FBF5ED;
  --text-on-dark-secondary: #CBB8A0;
  --accent-gold: #ECB914;
  --accent-honey: #F6D579;
  --accent-olive: #9D8108;
  --border-light: #D9CBBB;
  --border-dark: #333333;
  --cyan: #00D4FF;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Fixed DAW Background ===== */
.daw-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.daw-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daw-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* ===== Playhead ===== */
.playhead {
  position: fixed;
  top: 0;
  width: 2px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
  left: 300px;
  pointer-events: none;
  transition: left 0.05s linear;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

/* ===== Nav Bar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(236, 185, 20, 0.3);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 24px;
}

.btn-lg {
  font-size: 18px;
  padding: 18px 40px;
}

/* ===== Content (scrollable) ===== */
.content {
  position: relative;
  z-index: 2;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 160px;
  background: rgba(0, 0, 0, 0.38);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 700px;
}

.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* ===== Panels ===== */
.panel {
  max-width: 1200px;
  margin: 60px auto;
  padding: 64px 80px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel-light {
  background: var(--bg-cream);
  border: 1px solid rgba(217, 203, 187, 0.4);
  color: var(--text-on-light);
}

.panel-dark {
  background: var(--bg-glass-dark);
  border: 1px solid rgba(51, 51, 51, 0.4);
  color: var(--text-on-dark);
}

.panel h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

.panel-light h2 {
  color: var(--text-on-light);
}

.panel-dark h2 {
  color: #fff;
}

.panel p {
  font-size: 16px;
  line-height: 1.625;
  max-width: 800px;
}

.panel-light p {
  color: var(--text-on-light-secondary);
}

/* ===== Labels ===== */
.label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-olive { color: var(--accent-olive); }
.label-gold { color: var(--accent-gold); }

/* ===== Badge ===== */
.badge {
  display: inline-block;
  background: rgba(236, 185, 20, 0.15);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-on-light);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-on-light-secondary);
}

/* ===== Pricing ===== */
.panel-pricing {
  max-width: 560px;
  align-items: center;
  text-align: center;
  padding: 48px;
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-on-light);
}

.price-orig {
  font-size: 20px;
  color: var(--text-on-light-secondary);
  text-decoration: line-through;
}

.price-desc {
  font-size: 16px;
  color: var(--text-on-light-secondary);
  text-align: center;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
  width: 100%;
  text-align: left;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-on-light);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.87);
  font-style: italic;
}

.author {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.53);
}

/* ===== FAQ ===== */
.panel-faq {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(217, 203, 187, 0.4);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-on-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--text-on-light-secondary);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-on-light-secondary);
}

/* ===== Final CTA ===== */
.panel-cta {
  align-items: center;
  text-align: center;
  padding: 80px 120px;
}

.cta-sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.67) !important;
}

.cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ===== Footer ===== */
.footer {
  background: rgba(26, 26, 26, 0.94);
  border-top: 1px solid rgba(51, 51, 51, 0.4);
  border-radius: 20px 20px 0 0;
  padding: 48px 80px;
  max-width: 1440px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 100px; /* space for transport bar */
}

.footer-columns {
  display: flex;
  gap: 48px;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.53);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.53);
  text-decoration: none;
  transition: color 200ms;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Transport Bar ===== */
.transport-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: rgba(26, 26, 26, 0.93);
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 200;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tp-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 200ms;
}

.tp-btn:hover { opacity: 1; }

.rec-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #CC3333;
}

.tp-timecode {
  background: var(--bg-dark-deep);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
}

.tp-time {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  min-width: 220px;
  text-align: center;
}

.tp-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-box {
  background: var(--bg-dark-deep);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tp-bpm {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.tp-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: #666;
}

.tp-ts {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* ===== Hero Buttons ===== */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 24px rgba(236, 185, 20, 0.15);
  transform: translateY(-1px);
}

.btn-secondary.btn-lg {
  font-size: 18px;
  padding: 18px 40px;
}

/* ===== DAW Modal ===== */
.daw-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.daw-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.daw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.daw-modal-container {
  position: relative;
  width: 80vw;
  height: 70vh;
  max-width: 1400px;
  max-height: 800px;
  background: #111;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.daw-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 20;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 200ms;
}

.daw-modal-close:hover {
  color: #fff;
}

/* Overlay */
.daw-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.daw-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.daw-overlay-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daw-overlay-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.daw-overlay-keys {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.daw-overlay-keys--sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.daw-overlay-keys kbd {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: inherit;
  font-weight: 600;
  color: var(--cyan);
}

/* Floating timecode */
.daw-timecode-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 32px 14px;
  border-radius: 20px;
  background: rgba(40, 40, 40, 0.55);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.daw-timecode-float.is-visible {
  opacity: 1;
}

.daw-tc-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.daw-tc-mode {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.daw-tc-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease;
}

.daw-tc-value {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
  letter-spacing: 0.02em;
}

/* Hint row */
.daw-tc-hint {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.daw-tc-hint kbd {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

/* Shuttle state */
.daw-timecode-float.is-shuttle .daw-tc-mode {
  color: rgba(255, 160, 50, 0.7);
}

.daw-timecode-float.is-shuttle .daw-tc-value {
  color: rgba(255, 180, 80, 0.92);
}

.daw-timecode-float.is-shuttle .daw-tc-indicator {
  background: #FF8C00;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
  animation: shuttle-pulse 0.5s ease-in-out infinite alternate;
}

.daw-timecode-float.is-shuttle .daw-tc-hint kbd {
  border-color: rgba(255, 160, 50, 0.2);
  color: rgba(255, 160, 50, 0.5);
}

@keyframes shuttle-pulse {
  from { opacity: 1; box-shadow: 0 0 6px rgba(255, 140, 0, 0.4); }
  to   { opacity: 0.4; box-shadow: 0 0 12px rgba(255, 140, 0, 0.7); }
}

.daw-tp-loop.is-active {
  color: var(--cyan);
}

.daw-tp-loop.is-active:hover {
  color: var(--cyan);
}

/* Modal layout wrapper (title + container + compat bar) */
.daw-modal-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-height: 96vh;
}

.daw-bar-top {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.daw-bar-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.daw-bar-bottom-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.daw-compat-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.daw-compat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 200ms;
}

.daw-compat-icon:hover {
  opacity: 1;
}

.daw-bar-bottom-more {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* DAW Sim layout */
.daw-sim {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.daw-ruler {
  height: 28px;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.daw-ruler-mark {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #666;
  padding-left: 4px;
  border-left: 1px solid #333;
}

.daw-main {
  display: flex;
  flex: 1;
  min-height: 0;
}

.daw-tracklist {
  width: 200px;
  flex-shrink: 0;
  background: #161616;
  border-right: 1px solid #333;
  overflow: hidden;
}

.daw-track-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid #222;
  font-size: 12px;
  color: #ccc;
  cursor: default;
}

.daw-track-color {
  width: 4px;
  height: 60%;
  border-radius: 2px;
  flex-shrink: 0;
}

.daw-track-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
  font-weight: 500;
}

.daw-track-vol {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #666;
}

.daw-timeline {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  background: #1a1a1a;
}

.daw-timeline canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.daw-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  z-index: 5;
  left: 0;
  pointer-events: none;
}

/* Transport */
.daw-transport {
  height: 48px;
  background: #161616;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
  flex-shrink: 0;
}

.daw-tp-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.daw-tp-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 4px;
  transition: all 150ms;
}

.daw-tp-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.daw-tp-play {
  color: #fff;
}

.daw-tp-play.is-active {
  color: #4ade80;
}

.daw-tp-timecode {
  background: #0D0D0D;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 4px 14px;
}

.daw-tp-time {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.daw-tp-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.daw-tp-box {
  background: #0D0D0D;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.daw-tp-bpm {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.daw-tp-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: #666;
}

.daw-tp-ts {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* Body lock when modal is open */
body.daw-modal-open {
  overflow: hidden;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .navbar { padding: 0 40px; }
  .hero { padding: 100px 40px; }
  .hero h1 { font-size: 44px; }
  .panel { margin: 40px 20px; padding: 48px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-columns { flex-wrap: wrap; }
  .daw-modal-container { width: 95vw; height: 85vh; }
  .daw-tracklist { width: 150px; }
  .daw-tc-value { font-size: 32px; }
  .daw-timecode-float { padding: 12px 22px; border-radius: 14px; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .panel { padding: 32px 24px; }
  .panel h2 { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .panel-pricing { max-width: 100%; }
  .price { font-size: 44px; }
  .footer-columns { flex-direction: column; gap: 32px; }
  .tp-info { display: none; }
  .tp-time { font-size: 16px; min-width: 170px; }
  .playhead { display: none; }
  .daw-modal-container { width: 100vw; height: 100vh; max-width: none; max-height: none; border-radius: 0; }
  .daw-tracklist { width: 120px; }
  .daw-track-vol { display: none; }
  .daw-tp-info { display: none; }
  .daw-tc-value { font-size: 24px; }
  .daw-timecode-float { padding: 10px 18px; border-radius: 12px; gap: 10px; }
  .daw-overlay-title { font-size: 22px; }
  .daw-overlay-keys { font-size: 14px; }
  .hero-buttons { flex-direction: column; }
  .daw-bar-bottom-more { display: none; }
  .daw-bar-bottom-label { display: none; }
  .daw-compat-icons { gap: 8px; }
  .daw-bar-top { font-size: 16px; }
  .daw-modal-layout { gap: 14px; }
}
