
    :root {
      --bg: #0c0c10;
      --panel: #13131a;
      --muted: #a0a0b3;
      --text: #e9e9f3;
      --accent: #7c3aed;
      --accent-2: #9f67ff;
      --teal: #2ad6c5;
      --amber: #f59e0b;
      --red: #ef4444;
      --mint: #22c55e;
      --ring: 0 0 0 3px rgba(124,58,237,.4);
      --maxw: 1200px;
      --radius: 18px;
    }
    * { box-sizing: border-box; }
    html, body { margin: 0; height: 100%; scroll-behavior: smooth; }
    body {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:
        radial-gradient(1200px 900px at 85% -20%, rgba(124,58,237,.16), transparent 65%),
        radial-gradient(1400px 1000px at 10% 10%, rgba(42,214,197,.10), transparent 62%),
        radial-gradient(1200px 900px at 50% 120%, rgba(159,103,255,.08), transparent 68%),
        linear-gradient(180deg, #0b0c12 0%, #0b0c13 45%, #090a11 100%);
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      background-color: #090a11;
      color: var(--text);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; }
    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 24px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      border: 1px solid rgba(255,255,255,.08);
      padding: 12px 18px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      backdrop-filter: saturate(140%) blur(6px);
      color: var(--text);
      font-weight: 600;
      transition: .2s ease;
      cursor: pointer;
    }
    .btn:hover {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.18);
    }
    .btn.primary {
      background: linear-gradient(180deg, var(--accent), #6226d5);
      border: none;
      box-shadow: 0 10px 30px -10px rgba(124,58,237,.6);
    }
    .btn.primary:hover {
      filter: brightness(1.05);
    }
    .brand-with-social {
      flex-wrap: wrap;
    }
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(12,12,16,.7);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: relative;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-toggle {
      display: none;
      align-items: center;
      gap: 6px;
      padding: 9px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: var(--text);
      font-weight: 700;
      cursor: pointer;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: .8rem;
    }
    .brand .logo {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: conic-gradient(from 180deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 0 3px rgba(124,58,237,.2);
    }
    .brand strong {
      font-weight: 800;
      letter-spacing: .2px;
    }
    .nav a {
      padding: 10px 12px;
      border-radius: 10px;
    }
    .nav a:hover {
      background: rgba(255,255,255,.06);
    }
    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin-top: 16px;
    }

    .hero {
        padding: 88px 0 56px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: center;
    }
        .title {
            font-size: clamp(32px, 6vw, 56px);
            line-height: 1.08;
            margin: 0 0 12px;
    }
    .subtitle {
      color: var(--muted);
      font-size: 1.1rem;
    }
    .hero-card img {
      width: 100%;
      display: block;
      border-radius: var(--radius);
      object-fit: cover;
      max-height: 520px;
    }
    .badge {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(124,58,237,.12);
      border: 1px solid rgba(124,58,237,.35);
      color: #d8c6ff;
      font-weight: 600;
      margin-bottom: 14px;
    }

    /* Mixing challenge hero treatment */
    .mixing-hero {
      padding: 96px 0 68px;
    }
    .mixing-hero-panel {
      position: relative;
      padding: 26px 26px 30px;
      background: linear-gradient(135deg, rgba(42,214,197,.18), rgba(12,12,16,.9) 54%, rgba(124,58,237,.08));
      /*  border: 1px solid rgba(42,214,197,.42);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: 0 18px 48px -16px rgba(42,214,197,.35);
      overflow: hidden;
      isolation: isolate; */
    }
    .mixing-hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(220px 180px at 18% 22%, rgba(42,214,197,.22), transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .mixing-hero-panel > * {
      position: relative;
      z-index: 1;
    }
    .mixing-hero .badge {
      background: rgba(42,214,197,.22);
      border-color: rgba(42,214,197,.52);
      color: #e8fff9;
      box-shadow: 0 12px 32px -14px rgba(42,214,197,.55);
    }

    section {
      padding: 56px 0;
    }
    h2 {
      font-size: clamp(24px, 3vw, 34px);
      margin: 0 0 18px;
    }
    .grid {
      display: grid;
      gap: 18px;
    }
    .cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card {
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 20px;
    }
    .card h3 {
      margin: 0 0 6px;
    }
    .muted {
      color: var(--muted);
    }
    .accent-highlight {
      display: inline-block;
      font-weight: 800;
      color: var(--text);
      background: rgba(124,58,237,.16);
      border: 1px solid rgba(124,58,237,.32);
      padding: 6px 10px;
      border-radius: 12px;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: .2px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
    }
    .pill.amber { background: rgba(245,158,11,.16); border-color: rgba(245,158,11,.42); color: #ffe9c2; }
    .pill.red { background: rgba(239,68,68,.18); border-color: rgba(239,68,68,.4); color: #ffe2e2; }
    .pill.mint { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.42); color: #d8ffe7; }
    .card iframe {
      width: 100%;
      height: min(520px, 75vw);
      border: 0;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .guide-row {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .guide-row .guide-grid {
      flex: 1 1 520px;
      min-width: 320px;
    }
    .guide-card {
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 18px 44px -22px rgba(0,0,0,.6);
    }
    .guide-card h3 { margin: 0 0 10px; }
    .guide-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      display: grid;
      gap: 6px;
    }
    .guide-visual {
      margin: 6px 0;
      background: transparent;
      border: none;
      border-radius: calc(var(--radius) + 2px);
      padding: 0;
      box-shadow: none;
      max-width: 280px;
      flex: 0 0 240px;
    }
    .guide-visual figure {
      margin: 0;
      display: grid;
      gap: 6px;
    }
    .guide-visual img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius);
      border: none;
      object-fit: cover;
      max-height: 160px;
    }
    .guide-visual figcaption {
      display: none;
    }
    .guide-visual.tall {
      max-width: 320px;
      flex: 0 0 300px;
      align-self: stretch;
    }
    .guide-visual.tall img {
      height: 100%;
      max-height: none;
      min-height: 100%;
      object-fit: cover;
    }
    .rules-block {
      padding-top: 32px;
    }
    .rules-card {
      background: linear-gradient(150deg, rgba(42,214,197,.12), rgba(124,58,237,.14));
      border: 1px solid rgba(42,214,197,.4);
      border-radius: calc(var(--radius) + 4px);
      padding: 24px;
      display: grid;
      gap: 12px;
      box-shadow: 0 14px 40px -18px rgba(0,0,0,.55);
    }
    .rules-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(42,214,197,.18);
      border: 1px solid rgba(42,214,197,.4);
      font-weight: 700;
      color: #dbfff9;
      text-transform: uppercase;
      letter-spacing: .6px;
      font-size: .9rem;
    }
    .rules-list {
      list-style: none;
      margin: 0;
      padding: 8px 0 0;
      display: grid;
      gap: 10px;
    }
    .rules-list li {
      position: relative;
      padding-left: 28px;
      line-height: 1.5;
    }
    .rules-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(42,214,197,.22);
    }
    .icon {
      width: 22px;
      height: 22px;
      display: inline-block;
    }

    .process {
      counter-reset: step;
    }
    .teal-heading {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: rgba(42,214,197,.16);
      border: 1px solid rgba(42,214,197,.4);
      border-radius: 14px;
      color: #dbfff9;
      box-shadow: 0 12px 32px -16px rgba(42,214,197,.4);
    }
    .process .step {
      position: relative;
      padding-left: 54px;
    }
    .process .step:not(:last-child) {
      padding-bottom: 18px;
    }
    .process .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(180deg, var(--accent), #5e28c8);
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    .contact {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
    }
    form {
      display: grid;
      gap:12px;
    }
    label {
      font-weight: 600;
    }
    input, select, textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      background: #0e0e14;
      color: var(--text);
      outline: none;
    }
    input:focus, select:focus, textarea:focus {
      box-shadow: var(--ring);
    }
    textarea {
      min-height:120px;
      resize: vertical;
    }
    .success {
      display: none;
      padding:12px;
      border-radius:12px;
      background: rgba(34,197,94,.15);
      border:1px solid rgba(34,197,94,.35);
    }

    .upload-embed {
      aspect-ratio: 16/9;
      border:1px dashed rgba(255,255,255,.18);
      border-radius:14px;
      overflow:hidden;
      background:#0e0e14;
      display:grid;
      place-items:center;
    }
    .upload-embed iframe {
      width:100%;
      height:100%;
      border:0;
    }

    footer {
      border-top:1px solid rgba(255,255,255,.08);
      padding:28px 0;
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .hero-grid, .contact, .cols-3, .cols-2 {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        padding: 0 16px;
      }
      .nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
        height: auto;
        padding: 10px 0;
        position: relative;
      }
      .nav-toggle {
        display: inline-flex;
        font-size: .95rem;
        order: 1;
      }
      .nav .muted {
        width: auto;
        order: 0;
      }
      .nav .nav-links {
        display: none !important;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 8px;
        padding: 10px 12px;
        background: rgba(12,12,16,.95);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 12px;
        box-shadow: 0 18px 40px -20px rgba(0,0,0,.8);
        z-index: 60;
      }
      .nav .nav-links.is-open {
        display: flex !important;
      }
      .nav a {
        padding: 6px 9px;
        font-size: .95rem;
      }
      .nav .btn {
        padding: 8px 10px;
        font-size: .95rem;
      }
      .brand-with-social {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
      }
      .brand .logo {
        width: 22px;
        height: 22px;
        border-radius: 6px;
      }
      .brand strong {
        font-size: 1rem;
      }
      .brand .muted {
        display: none;
      }
      .hero {
        padding: 28px 0 28px;
      }
      .hero-card img {
        max-height: 380px;
      }
      .client-reel {
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 12px 4px;
      }
      .client-reel img {
        height: 58px;
        flex: 0 0 auto;
        scroll-snap-align: center;
      }
      .guide-row {
        flex-direction: column;
        align-items: stretch;
      }
      .guide-row .guide-grid {
        grid-template-columns: 1fr;
      }
      .guide-visual,
      .guide-visual.tall {
        max-width: none;
        width: 100%;
        flex: 0 0 auto;
      }
      .upload-embed {
        min-height: 320px;
      }
      .upload-embed iframe {
        min-height: 360px;
      }
      .process .card {
        padding: 16px;
      }
      .process .step {
        padding-left: 42px;
      }
      .process .step::before {
        width: 28px;
        height: 28px;
        font-size: .95rem;
      }
      .process .step:not(:last-child) {
        padding-bottom: 12px;
      }
      body {
        background:
          radial-gradient(1400px 1200px at 80% -30%, rgba(124,58,237,.14), transparent 68%),
          radial-gradient(1600px 1200px at 12% 0%, rgba(42,214,197,.10), transparent 64%),
          linear-gradient(180deg, #0b0c12 0%, #090a11 100%);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
        background-position: center top;
        background-color: #090a11;
      }
    }


/* Scroll-triggered animation */
.client-reel img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.client-reel img.visible {
  opacity: 1;
  transform: translateY(0);
}

.client-reel-wrapper {
  width: 100vw;
  overflow-x: hidden;
  padding: 0 0 12px;
}

.client-reel {
  display: flex;
  gap: 100px;
  padding: 24px 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}


.client-reel img {
  height: 96px;
  object-fit: contain;
  scroll-snap-align: center;
  flex-shrink: 0;
  filter: brightness(1) contrast(1.1);
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.client-reel img.visible {
  opacity: 1;
  transform: translateY(0);
}

.client-reel img:hover {
  transform: scale(1.07);
}

.hero-image {
  max-height: none;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}


.hero-image.fade-in img.visible {
  opacity: 1;
  transform: translateY(0);
}

#instagram-feed {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 24px 0 56px; /* padding at bottom of page */
}

.instagram-embed {
  width: 100%;
  max-width: 900px;  /* make it wider */
  min-height: 300px;
  overflow: hidden;
}

.nav .btn img {
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.nav .btn:hover img {
  transform: scale(1.1);
}

.brand .muted a img {
  transition: transform 0.2s ease;
}

.brand .muted a:hover img {
  transform: scale(1.1);
}
