

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg:            #080a0e;
  --bg-2:          #0d1117;
  --bg-card:       #111620;
  --bg-card-hover: #161d2a;
  --border:        rgba(255,255,255,0.07);
  --border-glow:   rgba(255,107,0,0.3);

  --orange:        #ff6b00;
  --orange-light:  #ff8c2f;
  --yellow:        #ffb800;
  --blue:          #3b82f6;
  --green:         #22c55e;
  --purple:        #8b5cf6;
  --teal:          #14b8a6;

  --text-primary:  #f0f0f0;
  --text-secondary:#9ca3af;
  --text-muted:    #6b7280;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-pill:   999px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 40px rgba(255,107,0,0.15);
  --transition:    0.25s ease;

  --header-h:      64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); letter-spacing: -0.01em; }
p  { color: var(--text-secondary); }

@media (prefers-reduced-motion: reduce) {
  .cursor, .cursor-dot { display: none !important; }
  body { cursor: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (pointer: fine) {
  body:not(.reduce-motion) { cursor: none; }
  body:not(.reduce-motion) a,
  body:not(.reduce-motion) button,
  body:not(.reduce-motion) [data-hover] { cursor: none; }
  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
  }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }
  .cursor.is-hover {
    width: 36px; height: 36px;
    border-color: var(--yellow);
    background: rgba(255,107,0,0.08);
  }
}
@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 96px 0; }
.section--sm{ padding: 64px 0; }
.text-center{ text-align: center; }
.mt-md      { margin-top: 40px; }
.mb-0       { margin-bottom: 0; }

body::before {
  content: '';
  position: fixed;
  top: -200px; left: 50%;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,10,14,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap:hover { text-decoration: none; }
.logo-anim {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center;
  transition: filter 0.3s ease;
}
.logo-wrap:hover .logo-anim { filter: brightness(1.18) drop-shadow(0 0 8px rgba(255,107,0,0.45)); }
.logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  display: block;
}
.logo-slice-overlay { position: absolute; inset: 0; pointer-events: none; }
.logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-name span { color: var(--orange); }

.header-wave {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  height: 32px;
  padding: 0 24px;
  pointer-events: none;
  overflow: hidden;
}
.header-wave-bar {
  width: 2.5px;
  min-height: 2px;
  max-height: 26px;
  border-radius: 2px;
  background: var(--orange);
  opacity: 0.22;
  flex-shrink: 0;
  transition: height 0.14s ease, opacity 0.14s ease;
}

.site-nav { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
.site-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--orange); text-decoration: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); text-decoration: none; }
.nav-cta svg   { flex-shrink: 0; position: relative; top: 0.5px; }
.nav-cta .nav-cta-text-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.35);
  text-decoration: none;
  color: #fff;
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,107,0,0.06);
  text-decoration: none;
  color: var(--text-primary);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -60px;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero.section-is-active::after { opacity: 1; }

@media (min-width: 769px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding: 60px 0;
  }
  .hero > .container { width: 100%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  white-space: nowrap;
  max-width: 100%;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.hero-product-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-accent {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
}
.hero-trust span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.hero-trust span:first-child {
  border-left: none;
  padding-left: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slice-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.hero-slice-stage::before {
  content: '';
  position: absolute;
  bottom: -18px; left: 8%; right: 8%;
  height: 70px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-slice-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -45deg,
    transparent 32%,
    rgba(255,130,0,0.5) 50%,
    transparent 68%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.06s ease;
}
.hero-slice-stage.anim-flash::after { opacity: 1; }

.mango-layer,
.katana-layer,
.music-particles-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mango-whole {
  opacity: 1;
  z-index: 2;
  transition: opacity 0.35s ease;
}
.mango-left {
  opacity: 0;
  z-index: 3;
  transform: translate(0, 0);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2,0,0.1,1);
}
.mango-right {
  opacity: 0;
  z-index: 3;
  transform: translate(0, 0);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2,0,0.1,1);
}
.mango-sliced {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.katana-layer {
  opacity: 0;
  z-index: 10;
  transform: translate(-56%, 56%) rotate(-45deg);
  transition: opacity 0.22s ease, transform 0.68s cubic-bezier(0.35,0,0.15,1);
}
.music-particles-layer {
  opacity: 0;
  z-index: 4;
  transform: scale(0.88);
  transition: opacity 0.5s ease, transform 0.9s ease;
}

.s-slice .katana-layer {
  opacity: 1;
  transform: translate(56%, -56%) rotate(-45deg);
}

.s-open .mango-whole  { opacity: 0; }
.s-open .mango-left   { opacity: 1; transform: translate(-12%, -9%); }
.s-open .mango-right  { opacity: 1; transform: translate(12%, 9%); }
.s-open .katana-layer { opacity: 0; }
.s-open .music-particles-layer { opacity: 1; transform: scale(1.07); }

.s-hold .katana-layer {
  opacity: 0.85;
  transform: translate(0%, 0%) rotate(-90deg);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.25,0.1,0.25,1);
}

.s-close .mango-whole  { opacity: 1; }
.s-close .mango-left   { opacity: 0; transform: translate(0, 0); }
.s-close .mango-right  { opacity: 0; transform: translate(0, 0); }
.s-close .katana-layer { opacity: 0; }
.s-close .music-particles-layer { opacity: 0; transform: scale(0.88); }

.s-exit .katana-layer {
  opacity: 0;
  transform: translate(120%, -120%) rotate(-30deg);
  transition: opacity 0.4s ease 0.1s, transform 0.65s cubic-bezier(0.5,0,0.8,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slice-stage .mango-whole        { opacity: 0 !important; }
  .hero-slice-stage .mango-sliced       { opacity: 1 !important; }
  .katana-layer,
  .music-particles-layer,
  .mango-left,
  .mango-right                          { display: none !important; }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.hero-scroll-cue:hover { opacity: 0.9; }
.hero-scroll-cue svg {
  width: 20px; height: 20px;
  color: var(--orange);
  animation: cue-bounce 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-scroll-cue svg:nth-child(1) { animation-delay: 0s;    opacity: 0.5; }
.hero-scroll-cue svg:nth-child(2) { animation-delay: 0.18s; opacity: 0.75; }
.hero-scroll-cue svg:nth-child(3) { animation-delay: 0.36s; opacity: 1; }
@keyframes cue-bounce {
  0%, 60%, 100% { transform: translateX(-50%) translateY(0); }
  30%           { transform: translateX(-50%) translateY(5px); }
}
@media (max-width: 768px) { .hero-scroll-cue { bottom: 16px; } }

.track-outer { position: relative; }

@media (min-width: 769px) {
  .track-outer { height: 320vh; }
  .track-section {
    position: sticky;
    top: var(--header-h);
    height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: 40px 0 20px;
  }
}

@media (max-width: 768px) {
  .track-outer { height: auto; }
  .track-section { position: static; padding: 72px 0; }
}

.track-section > .container { flex-shrink: 0; }
.track-section .section-sub { max-width: none; margin-top: 10px; margin-bottom: 0; }

.daw-workspace {
  flex: 1;
  display: flex;
  flex-direction: row;
  background: #09090f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin: 14px 24px 0;
  position: relative;
  min-height: 0;
}
@media (min-width: 1228px) {
  .daw-workspace {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 48px);
  }
}

.daw-left-col {
  width: 186px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.daw-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}

.daw-left-col,
.daw-arrangement,
.daw-mixer {
  transition: opacity 0.4s ease;
}
.daw-zone--dim { opacity: 0.3; }
.daw-zone--active { opacity: 1; }

.daw-plugin-win {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  min-height: 0;
}
.daw-plugin-win:last-child { border-bottom: none; }
.daw-plugin-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 8px;
  background: #06070c;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.daw-plugin-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  flex: 1;
}
.daw-plugin-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  color: rgba(255,107,0,0.6);
  white-space: nowrap;
}
.daw-plugin-body {
  flex: 1;
  overflow: hidden;
  padding: 6px;
}

.daw-browser-list { display: flex; flex-direction: column; gap: 1px; }
.daw-browser-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  padding: 5px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,0.28);
  cursor: default;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
  border-left: 2px solid transparent;
}
.daw-browser-item--active {
  background: rgba(255,107,0,0.13);
  color: rgba(255,140,60,0.95);
  border-left-color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(255,107,0,0.12);
}

.daw-feature-panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  display: flex;
  align-items: stretch;
  padding: 8px 10px;
}
.daw-fp-item {
  display: none;
  position: relative;
  width: 100%;
  background: rgb(14, 15, 24);
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-top: 2px solid rgba(255, 107, 0, 0.7);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 107, 0, 0.05),
    0 0 32px rgba(255, 107, 0, 0.13),
    0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 20px 26px 18px;
  flex-direction: column;
  justify-content: center;
}
.daw-fp-item.is-active {
  display: flex;
  animation: fp-in 0.22s cubic-bezier(0.2, 0, 0.1, 1);
}
@keyframes fp-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.daw-fp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.daw-fp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.7;
  letter-spacing: 0.12em;
}
.daw-fp-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: rgba(255,107,0,0.09);
  border: 1px solid rgba(255,107,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.daw-fp-icon-wrap svg {
  width: 15px; height: 15px;
  color: var(--orange);
  opacity: 0.9;
}

.daw-fp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.daw-fp-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 560px;
}

.daw-fp-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.daw-fp-bullets li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}
.daw-fp-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}

.daw-sampler-pads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.daw-pad {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.daw-pad--lit { background: rgba(255,107,0,0.18); border-color: rgba(255,107,0,0.35); }
.daw-pad--blue.daw-pad--lit { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.35); }
.daw-pad--green.daw-pad--lit { background: rgba(34,197,94,0.16); border-color: rgba(34,197,94,0.3); }

.daw-eq-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.daw-plugin-win--eq .daw-plugin-body { padding: 8px; }
.daw-eq-point { cursor: crosshair; }

.daw-arrangement {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: opacity 0.2s ease;
  position: relative;
}
.daw-arr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 12px;
  background: #06070c;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.daw-arr-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.daw-arr-transport {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}
.daw-transport-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 5px rgba(255,107,0,0.7);
  animation: dot-pulse 1.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.daw-arr-ruler {
  display: flex;
  height: 22px;
  flex-shrink: 0;
  background: #07080d;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.daw-arr-ruler-head {
  width: 82px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.daw-arr-ruler-marks {
  flex: 1;
  display: flex;
  overflow: hidden;
}
.daw-arr-ruler-marks span {
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding-left: 4px;
  font-size: 0.58rem;
  font-family: 'Space Grotesk', monospace;
  color: rgba(255,255,255,0.14);
}

.daw-arr-tracks {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.daw-arr-track {
  flex: 1;
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  min-height: 0;
}
.daw-arr-track:last-child { border-bottom: none; }
.daw-arr-track-head {
  width: 82px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
}
.daw-arr-track-lane {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.daw-arr-clip {
  position: absolute;
  top: 4px;
  bottom: 4px;
  border-radius: 4px;
  overflow: hidden;
  padding: 3px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.daw-arr-clip--sm { top: 5px; bottom: 5px; padding: 0; }
.daw-arr-clip .daw-clip-wave { height: 10px; margin-bottom: 0; }
.daw-arr-clip .daw-clip-wave b { width: 1.5px; }

.daw-midi-notes {
  position: absolute;
  inset: 4px;
}
.daw-midi-notes span {
  position: absolute;
  width: 6%;
  border-radius: 1px;
  opacity: 0.7;
}
.daw-clip--blue .daw-midi-notes span { background: rgba(100,160,255,0.9); }
.daw-clip--purple .daw-midi-notes span { background: rgba(165,130,255,0.9); }

.daw-mixer {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.daw-mixer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  padding: 0 12px;
  background: #06070c;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.daw-mixer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.daw-mixer-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.2);
}
.daw-mixer-channels {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 1px;
  padding: 8px 12px;
  overflow: hidden;
}
.daw-ch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.daw-ch--master { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 8px; }
.daw-ch-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.daw-ch-fader-wrap {
  flex: 1;
  width: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.daw-ch-fader {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--fh, 70%);
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: height 0.3s ease;
}
.daw-ch--master .daw-ch-fader { background: rgba(255,107,0,0.4); }
.daw-ch-meter {
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.daw-ch-meter-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--ml, 60%);
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.daw-ch-meter-bar--orange { background: rgba(255,107,0,0.7); }

@keyframes fader-breathe {
  0%, 100% { height: var(--fh, 70%); }
  50% { height: calc(var(--fh, 70%) + 8%); }
}
.daw-mixer.daw-zone--active .daw-ch-fader {
  animation: fader-breathe 2.8s ease-in-out infinite;
}
.daw-mixer.daw-zone--active .daw-ch:nth-child(1) .daw-ch-fader { animation-delay: 0s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(2) .daw-ch-fader { animation-delay: 0.3s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(3) .daw-ch-fader { animation-delay: 0.6s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(4) .daw-ch-fader { animation-delay: 0.2s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(5) .daw-ch-fader { animation-delay: 0.5s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(6) .daw-ch-fader { animation-delay: 0.1s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(7) .daw-ch-fader { animation-delay: 0.4s; }
.daw-mixer.daw-zone--active .daw-ch:nth-child(8) .daw-ch-fader { animation-delay: 0.7s; }

.daw-zone-desc {
  flex-shrink: 0;
  margin-top: 12px;
  min-height: 22px;
}
.daw-zone-desc-item {
  display: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.daw-zone-desc-item.is-active { display: block; }
.daw-zone-desc-item strong { color: rgba(255,255,255,0.75); font-weight: 600; }

.daw-end-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,9,15,0.9);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 10;
  border-radius: 14px;
}

.daw-ruler {
  display: flex;
  height: 30px;
  flex-shrink: 0;
  background: #06070c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.daw-ruler-offset {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.daw-ruler-marks {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.daw-ruler-mark {
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding-left: 6px;
  font-size: 0.6rem;
  font-family: 'Space Grotesk', monospace;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
}

.daw-body {
  display: flex;
  flex: 1;
  min-height: 0;
  position: relative;
}

.daw-track-heads {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.daw-track-head {
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 12px;
  cursor: default;
}
.daw-track-head:last-child { border-bottom: none; }
.daw-track-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.daw-dot--orange { background: var(--orange); box-shadow: 0 0 6px rgba(255,107,0,0.6); }
.daw-dot--blue   { background: var(--blue);   box-shadow: 0 0 6px rgba(59,130,246,0.6); }
.daw-dot--green  { background: var(--green);  box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.daw-dot--purple { background: var(--purple); box-shadow: 0 0 6px rgba(139,92,246,0.5); }
.daw-dot--teal   { background: var(--teal);   box-shadow: 0 0 6px rgba(20,184,166,0.5); }
.daw-dot--yellow { background: var(--yellow); box-shadow: 0 0 6px rgba(255,184,0,0.5); }
.daw-track-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.daw-lanes-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.daw-lanes {
  will-change: transform;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 769px) {
  .daw-lanes {
    min-width: 1800px;
  }
}

.daw-lane {
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  min-height: 0;
}
.daw-lane:last-child { border-bottom: none; }

.daw-clip {
  position: absolute;
  top: 7px;
  bottom: 7px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 12px;
  overflow: hidden;
  cursor: default;
  transition: filter 0.2s;
}
.daw-clip:hover { filter: brightness(1.12); }

.daw-clip-wave {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 14px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.daw-clip-wave b {
  display: block;
  width: 2px;
  border-radius: 1px;
  opacity: 0.55;
  background: currentColor;
}
.daw-clip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  color: currentColor;
}
.daw-clip--sm .daw-clip-wave { display: none; }
.daw-clip--sm .daw-clip-label { font-size: 0.68rem; opacity: 0.7; }

.daw-clip--orange {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.28);
  color: rgba(255,140,60,0.95);
}
.daw-clip--blue {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: rgba(100,160,255,0.95);
}
.daw-clip--green {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  color: rgba(60,200,110,0.95);
}
.daw-clip--purple {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: rgba(165,130,255,0.95);
}
.daw-clip--teal {
  background: rgba(20,184,166,0.09);
  border: 1px solid rgba(20,184,166,0.22);
  color: rgba(40,200,180,0.95);
}
.daw-clip--yellow {
  background: rgba(255,184,0,0.09);
  border: 1px solid rgba(255,184,0,0.22);
  color: rgba(220,185,40,0.95);
}

.track-scroll-hint {
  display: none;
}
@media (min-width: 769px) {
  .track-scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .track-scroll-hint svg { width: 12px; height: 12px; color: var(--orange); }
}

@media (max-width: 768px) {
  .daw-workspace {
    flex-direction: column;
    margin: 16px 0 0;
    border-radius: var(--radius);
    max-height: none;
  }
  .daw-left-col {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow-x: auto;
  }
  .daw-plugin-win {
    flex: none;
    min-width: 140px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .daw-plugin-win--eq { display: none; }
  .daw-right-col { flex: none; min-height: 300px; }
  .daw-arrangement { flex: 0 0 55%; }
  .daw-mixer { flex: 1; min-height: 120px; }
  .daw-mixer-hint { display: none; }
  .daw-end-cta { display: none; }
  .daw-zone--dim { opacity: 1; }
  .daw-zone-desc { display: none; }
}

.section-title { margin-bottom: 14px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 52px;
}

.ai-section {
  background: linear-gradient(160deg, rgba(11,15,22,1) 0%, rgba(13,17,23,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.05) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.ai-section.section-is-active::before { opacity: 1; }

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ai-content h2 { margin-bottom: 16px; }
.ai-content > p { max-width: none; margin-bottom: 32px; }
.ai-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ai-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1);
  border-radius: 8px;
  color: var(--blue);
}
.ai-feature-icon svg { width: 18px; height: 18px; }
.ai-feature-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.ai-feature-text p  { font-size: 0.875rem; line-height: 1.6; }

.ai-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}
.ai-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 0;
  width: 100%;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ai-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.ai-panel-traffic {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.ai-traffic-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ai-panel-title-group {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.ai-panel-logo {
  width: 16px; height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
}
.ai-panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ai-panel-status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.ai-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.5s ease-in-out infinite;
}
.ai-status-label {
  font-size: 0.68rem;
  color: var(--text-muted);
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.ai-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  flex: 1;
}
.ai-msg {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.55;
  min-height: 44px;
}
.ai-msg--user {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.18);
  color: var(--text-primary);
  align-self: flex-end;
  max-width: 90%;
}
.ai-msg--ai {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.14);
  color: var(--text-secondary);
  max-width: 94%;
  position: relative;
}
.ai-msg--ai::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 13px;
  background: var(--blue);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.ai-panel-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: rgba(0,0,0,0.12);
}
.ai-panel-footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ai-panel-footer-badge::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 28px 32px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  border-color: rgba(255,107,0,0.25);
  background: rgba(255,107,0,0.04);
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--orange);
  background: rgba(255,107,0,0.10);
  box-shadow: 0 0 16px rgba(255,107,0,0.18), inset 0 0 0 1px rgba(255,107,0,0.10);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step h3 { margin-bottom: 8px; font-size: 1rem; }
.step p   { font-size: 0.875rem; line-height: 1.65; color: var(--text-muted); margin: 0; }

.cta-chapter {
  background: var(--bg-2);
  border-top:    1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-chapter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,107,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-chapter.section-is-active::before { opacity: 1; }
.cta-chapter h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-chapter .btn-primary {
  font-size: 1.1rem;
  padding: 17px 40px;
  position: relative;
  margin-bottom: 36px;
}
.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.cta-trust-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-trust-row span::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-section-head { text-align: center; margin-bottom: 52px; }
.faq-section-head h2 { margin-bottom: 12px; }
.faq-section-head p  { font-size: 1.05rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item.is-open { border-color: rgba(255,107,0,0.3); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.faq-question:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 22px;
}
.faq-item.is-open .faq-answer-inner {
  padding: 4px 16px 24px;
  background: rgba(255,107,0,0.025);
  border-radius: 0 0 8px 8px;
}
.faq-answer p, .faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-secondary);
}
.faq-answer a { color: var(--orange); }
.faq-answer a:hover { text-decoration: underline; }

.blog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(255,107,0,0.25);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.blog-card h3 { font-size: 1rem; color: var(--text-primary); line-height: 1.42; }
.blog-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.blog-arrow   { font-size: 0.85rem; color: var(--orange); font-weight: 600; }
.blog-center  { text-align: center; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.65;
  word-break: break-word;
  hyphens: auto;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-primary); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-primary); text-decoration: none; }

.form-confirmation {
  display: none;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.form-confirmation.is-visible { display: block; }
.form-confirmation p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.form-confirmation strong { color: var(--text-primary); }
.form-confirmation a { color: var(--orange); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .ai-grid   { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  
  .site-nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 0;
    flex-direction: row;
    align-items: center;
  }
  .site-nav a:not(.nav-cta) { display: none; }
  .nav-toggle { display: none; }
  .header-wave { display: none; }
  .header-inner { justify-content: space-between; }

  
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { white-space: normal; font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-accent { max-width: none; }
  .hero-product-line { font-size: 1rem; }

  
  .track-outer { display: none !important; }

  
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step { align-items: flex-start; text-align: left; padding: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-section-head { flex-direction: column; align-items: flex-start; }
  .cta-chapter { padding: 72px 0; }
  .cta-trust-row { gap: 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  .section { padding: 72px 0; }
  .cta-chapter { padding: 60px 0; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .hero-trust span { border-left: none; padding-left: 0; }
  .nav-cta .nav-cta-text-desktop { display: none; }
  .nav-cta .nav-cta-text-mobile { display: inline; }
}

.article-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-breadcrumb a { color: var(--text-muted); }
.article-breadcrumb a:hover { color: var(--orange); text-decoration: none; }
.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.article-meta span::before { content: '·'; margin-right: 16px; }
.article-meta span:first-child::before { content: none; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  padding: 56px 0;
  align-items: start;
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.article-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul li, .article-body ol li {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.article-toc h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.article-toc ol { list-style: decimal; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.article-toc ol li a { font-size: 0.875rem; color: var(--text-secondary); transition: color var(--transition); }
.article-toc ol li a:hover { color: var(--orange); text-decoration: none; }
.article-sidebar { position: sticky; top: 84px; }
.sidebar-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h4 { font-size: 1.05rem; margin-bottom: 8px; }
.sidebar-cta p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; }
.sidebar-related h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-related ul { display: flex; flex-direction: column; gap: 12px; }
.sidebar-related ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--transition);
}
.sidebar-related ul li a:hover { color: var(--orange); text-decoration: none; }
.article-cta-band {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.article-cta-band h3 { margin-bottom: 8px; }
.article-cta-band p  { font-size: 0.9rem; margin-bottom: 20px; }
.article-cta-band .btn-primary { display: inline-flex; }
.related-articles { margin-top: 56px; }
.related-articles h2 { margin-bottom: 24px; font-size: 1.4rem; border-bottom: none; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.article-faq { margin-top: 48px; }
.article-faq h2 { margin-top: 0; }

.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 12px; }
.blog-index-section { margin-bottom: 64px; }
.blog-index-section h2 { font-size: 1.5rem; margin-bottom: 8px; }
.blog-index-section > p { font-size: 0.95rem; margin-bottom: 28px; }
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 0;
}
.contact-detail { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-detail-item { display: flex; gap: 12px; }
.contact-detail-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-item a { color: var(--orange); font-size: 0.9rem; }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-index-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.daw-ruler-mark {
  position: relative;
}

.daw-ruler-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent calc(25% - 0.5px),
    rgba(255,255,255,0.04) calc(25% - 0.5px),
    rgba(255,255,255,0.04) calc(25% + 0.5px),
    transparent calc(25% + 0.5px),
    transparent calc(50% - 0.5px),
    rgba(255,255,255,0.04) calc(50% - 0.5px),
    rgba(255,255,255,0.04) calc(50% + 0.5px),
    transparent calc(50% + 0.5px),
    transparent calc(75% - 0.5px),
    rgba(255,255,255,0.04) calc(75% - 0.5px),
    rgba(255,255,255,0.04) calc(75% + 0.5px),
    transparent calc(75% + 0.5px),
    transparent 100%
  );
  pointer-events: none;
}

.daw-track-head::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-left: auto;
  flex-shrink: 0;
}

.daw-clip--blue .daw-clip-wave b:nth-child(even) {
  opacity: 0.9;
  background: rgba(100,160,255,0.95);
}
.daw-clip--blue .daw-clip-wave b:nth-child(4n) {
  height: 14px !important;
  opacity: 1;
}

.daw-clip--teal.daw-clip--sm:last-child::before {
  content: '↗';
  font-size: 0.55rem;
  position: absolute;
  top: 4px; right: 5px;
  color: rgba(40,200,180,0.45);
}

.daw-end-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 0 20px;
}
.daw-end-cta-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.ai-section { padding: 80px 0; }
.ai-panel   { min-height: 320px; }
.ai-messages { min-height: 180px; }

.ai-msg-text { display: block; }
.ai-msg--has-file {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-file-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  align-self: flex-start;
  order: -1;
}
.ai-file-bubble svg { flex-shrink: 0; }
.ai-file-bubble span { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.steps-grid { margin-bottom: 40px; }
#how-it-works .section-sub { max-width: 560px; margin: 0 auto 48px; }

.hero {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(8,10,14,0.96) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

#how-it-works {
  background: linear-gradient(180deg, rgba(10,13,20,0.6) 0%, transparent 40%);
  position: relative;
}

.cta-chapter {
  background: linear-gradient(160deg, var(--bg-2) 0%, rgba(14,10,8,0.98) 100%);
}

#how-it-works { padding-bottom: 64px; }

.faq-item.is-open {
  border-color: rgba(255,107,0,0.35);
  border-left: 2px solid var(--orange);
  padding-left: 12px;
  margin-left: -12px;
}
.faq-item.is-open .faq-answer-inner {
  background: rgba(255,107,0,0.03);
  border-radius: 0 0 8px 8px;
  padding: 6px 16px 24px;
}
.faq-answer {
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.page-content > p:first-child {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.page-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 12px;
  padding-top: 8px;
  letter-spacing: -0.01em;
}
.page-content p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin: 12px 0 20px;
}
.page-content li {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}
.page-content a {
  color: var(--orange);
  text-decoration: none;
}
.page-content a:hover {
  text-decoration: underline;
}

.section-sub { color: rgba(205, 215, 230, 0.8); }

.ai-feature-icon {
  border: 1px solid rgba(59,130,246,0.2);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.06);
}

.step:hover {
  border-color: rgba(255,107,0,0.32);
  background: rgba(255,107,0,0.05);
  box-shadow: 0 2px 0 0 rgba(255,107,0,0.22), 0 8px 40px rgba(0,0,0,0.4);
}
.step:hover .step-badge {
  box-shadow: 0 0 22px rgba(255,107,0,0.32), inset 0 0 0 1px rgba(255,107,0,0.18);
  border-color: rgba(255,107,0,0.85);
}

.blog-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,107,0,0.08);
}

.faq-section-head { margin-bottom: 44px; }

.ai-section.section-is-active::before {
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 65%);
}

.sidebar-cta {
  border-color: rgba(255,107,0,0.35);
  box-shadow: 0 0 24px rgba(255,107,0,0.06);
}

.article-cta-band {
  border-color: rgba(255,107,0,0.35);
  box-shadow: 0 0 24px rgba(255,107,0,0.06);
}
