   html { scroll-behavior: smooth; }
  section, .cta-section { scroll-margin-top: 72px; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --lime: #D4FF00;
    --hot: #FF3B5C;
    --electric: #00C2FF;
    --ink: #0A0A0A;
    --offwhite: #F5F2EC;
    --muted: #888;
    --card-radius: 16px;
  }
  body {
    font-family: 'Satoshi', sans-serif;
    background: var(--ink);
    color: var(--offwhite);
    overflow-x: hidden;
  }
  .nav-wrapper {
    position: sticky; top: 0; z-index: 100;
    padding: 16px 1.5rem 0;
    pointer-events: none;
  }
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 1.25rem;
    max-width: 900px; margin: 0 auto;
    border-radius: 100px;
    background: rgba(14,14,14,0.45);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,255,0,0.25);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    pointer-events: auto;
  }
  @media (max-width: 768px) {
    .nav-wrapper { padding: 12px 1rem 0; }
  }
  .logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--lime); letter-spacing: -0.02em; }
  .nav-links { display: flex; gap: 2rem; }
  .nav-links a { color: var(--offwhite); text-decoration: none; font-size: 0.85rem; font-weight: 500; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-links a.nav-active { color: var(--lime); opacity: 1; }
  .sticky-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(14,14,14,0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212,255,0,0.2);
    padding: 0.85rem 2rem;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
  }
  .sticky-cta-bar.sticky-visible { transform: translateY(0); pointer-events: auto; }
  .sticky-cta-bar p { font-size: 0.88rem; color: #bbb; margin: 0; }
  .sticky-cta-btn {
    background: var(--lime); color: var(--ink); border: none;
    padding: 0.55rem 1.4rem; border-radius: 100px;
    font-weight: 700; font-size: 0.85rem; cursor: pointer;
    transition: transform 0.15s; white-space: nowrap;
  }
  .sticky-cta-btn:hover { transform: scale(1.04); }
  @media (max-width: 768px) {
    .sticky-cta-bar { flex-direction: column; gap: 0.75rem; padding: 1rem 1.5rem; }
  }
  .nav-cta {
    background: var(--lime); color: var(--ink); border: none; padding: 0.6rem 1.4rem;
    border-radius: 100px; font-weight: 700; font-size: 0.85rem; cursor: pointer;
    transition: transform 0.15s, background 0.15s;
  }
  .nav-cta:hover { transform: scale(1.04); background: #bfee00; }

  .hero-outer {
    position: relative;
    min-height: 100vh;
    margin-top: -72px;
  }
  .hero {
    padding: 5rem 2rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    max-width: 1100px; margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: 100vh;
  }
  .hero > div { min-width: 0; }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.9;
  }
  .hero-bg-fade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(10,10,10,0.6) 0%,
        rgba(10,10,10,0.0) 20%
      ),
      linear-gradient(
        to right,
        #0A0A0A 0%,
        #0A0A0A 25%,
        rgba(10,10,10,0.75) 45%,
        rgba(10,10,10,0.15) 65%,
        rgba(10,10,10,0.0) 100%
      );
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #1a1a1a; border: 1px solid #2a2a2a;
    padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 500; color: var(--lime);
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow span { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  .hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 7vw, 6rem); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.5rem; display: block; }
  .hero h1 .accent { color: var(--lime); }
  .hero h1 .accent2 { color: transparent; -webkit-text-stroke: 2px var(--hot); }
  .h1-line { display: block; overflow: hidden; line-height: 1; padding-bottom: 0; margin-bottom: 0; margin-top: 0; }
  .h1-line-inner {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    line-height: 1;
    padding-top: 0.04em;
    padding-bottom: 0.04em;
  }
  .h1-line-inner.line-visible { transform: translateY(0); opacity: 1; }
  .cycling-word-wrap { display: inline-grid; white-space: nowrap; }
  .cycling-word-wrap::after { content: 'CONVERTS.'; visibility: hidden; height: 0; overflow: hidden; }
  .cycling-word { display: inline-block; white-space: nowrap; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1); }
  .cycling-word.cycling-out { opacity: 0; transform: translateY(-40%); }
  .cycling-word.cycling-in  { opacity: 0; transform: translateY(40%); }
  .hero-sub { font-size: 1.05rem; color: #bbb; line-height: 1.55; margin-bottom: 2rem; max-width: 480px; }
  .hero-sub-mobile { display: none; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--lime); color: var(--ink); padding: 0.9rem 2rem;
    border-radius: 100px; font-weight: 700; font-size: 0.95rem; border: none;
    cursor: pointer; transition: transform 0.15s;
    display: inline-block; text-decoration: none;
  }
  .btn-primary:hover { transform: scale(1.04); }
  .btn-secondary {
    background: transparent; color: var(--offwhite); padding: 0.9rem 2rem;
    border-radius: 100px; font-weight: 500; font-size: 0.95rem;
    border: 1px solid #333; cursor: pointer; transition: border-color 0.2s;
    display: inline-block; text-decoration: none;
  }
  .btn-secondary:hover { border-color: #666; }

  @media (max-width: 768px) {
    .hero-bg-img { object-position: 70% center; opacity: 0.88; }
    .hero-bg-fade {
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.1) 0%,
        rgba(10,10,10,0.0) 40%,
        rgba(10,10,10,0.5) 80%,
        #0A0A0A 100%
      );
    }
  }

  .logos-bar {
    border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a;
    padding: 1.5rem 2rem; text-align: center;
  }
  .ticker-item {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #555;
    white-space: nowrap;
  }
  .ticker-sep {
    color: var(--lime);
    font-size: 0.72rem;
    margin: 0 0.5rem;
    opacity: 0.6;
  }
  .logos-row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
  .logo-item { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #444; letter-spacing: -0.02em; }

  section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
  .section-tag {
    display: inline-block; background: #1a1a1a; border: 1px solid #2a2a2a;
    color: var(--lime); font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1.25rem;
  }
  .section-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1rem; }
  .section-sub { font-size: 1rem; color: #bbb; line-height: 1.65; max-width: 560px; }

  .pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
  .pillar-card {
    background: #111; border: 1px solid #1e1e1e; border-radius: var(--card-radius);
    padding: 1.5rem; transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .pillar-card:hover { border-color: #333; transform: translateY(-2px); }
  .pillar-icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
  }
  .icon-lime { background: rgba(212,255,0,0.12); }
  .icon-hot { background: rgba(255,59,92,0.12); }
  .icon-electric { background: rgba(0,194,255,0.12); }
  .icon-purple { background: rgba(139,92,246,0.12); }
  .pillar-card h3 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
  .pillar-card p { font-size: 0.92rem; color: #bbb; line-height: 1.6; }
  .pillar-card .card-tag {
    display: inline-block; margin-top: 0.75rem;
    font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem; border-radius: 100px;
  }
  .tag-lime { background: rgba(212,255,0,0.12); color: var(--lime); }
  .tag-hot { background: rgba(255,59,92,0.12); color: var(--hot); }
  .tag-electric { background: rgba(0,194,255,0.12); color: var(--electric); }
  .tag-purple { background: rgba(139,92,246,0.12); color: #a78bfa; }

  .process-wrap {
    margin-top: 3rem; display: flex; flex-direction: column; gap: 0;
  }
  .process-step {
    display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
    padding: 1.75rem 0; border-bottom: 1px solid #1a1a1a; align-items: start;
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1;
    letter-spacing: -0.02em; color: #222;
  }
  .step-num.s1 { color: var(--lime); }
  .step-num.s2 { color: var(--hot); }
  .step-num.s3 { color: var(--electric); }
  .step-num.s4 { color: #a78bfa; }
  .step-body h3 { font-weight: 700; margin-bottom: 0.4rem; font-size: 1rem; }
  .step-body p { font-size: 0.93rem; color: #bbb; line-height: 1.65; }

  /* ── MERGED HOW-IT-WORKS SECTION ── */
  #how-it-works {
    position: relative;
    overflow: hidden;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .how-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 70%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      black 70%,
      transparent 100%
    );
  }
  .how-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.38;
    filter: grayscale(10%);
    display: block;
  }
  .how-bg-fade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to right,
        rgba(10,10,10,0.0) 45%,
        rgba(10,10,10,0.98) 90%
      ),
      linear-gradient(
        to left,
        transparent 92%,
        rgba(10,10,10,0.3) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(10,10,10,0.15) 0%,
        transparent 8%,
        transparent 92%,
        rgba(10,10,10,0.3) 100%
      );
    pointer-events: none;
  }
  .merged-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .merged-left-wrapper {
    position: relative;
    align-self: stretch;
  }
  .merged-left {
    position: static;
  }
  .merged-right {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 0;
  }
  .steps-progress-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1e1e1e;
    border-radius: 2px;
    z-index: 0;
  }
  .steps-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--lime);
    border-radius: 2px;
    transition: height 0.15s linear;
  }
  .steps-progress-dot {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px rgba(212,255,0,0.8), 0 0 20px rgba(212,255,0,0.4);
  }
  /* ── STEP STATES ── */
  .merged-step .mstep-num {
    font-size: 2rem;
    transition: text-shadow 0.5s ease;
    position: relative;
    z-index: 2;
    background: #0A0A0A;
    padding: 0 4px;
  }
  .merged-step.step-active .mstep-num {
    text-shadow: 0 0 18px currentColor;
  }
  .merged-step .mstep-body h3 {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    transition: color 0.5s ease, text-shadow 0.5s ease;
  }
  .merged-step.step-active .mstep-body h3 {
    color: #ffffff;
    text-shadow: 0 0 24px rgba(255,255,255,0.2);
  }
  .merged-step .mstep-body p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.65;
    transition: color 0.5s ease;
  }
  .merged-step.step-active .mstep-body p {
    color: #bbb;
  }
  /* ── SCAN LINE ── */
  .merged-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  @keyframes scan-sweep {
    0%   { left: 0; width: 0; opacity: 1; }
    50%  { width: 100%; opacity: 1; }
    100% { left: 100%; width: 0; opacity: 0; }
  }
  .step-scan-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(
      to right,
      transparent,
      rgba(212,255,0,0.6),
      transparent
    );
    pointer-events: none;
    z-index: 10;
    opacity: 0;
  }
  .step-scan-line.scanning {
    animation: scan-sweep 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  /* ── ICON PULSE ── */
  @keyframes icon-pulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); filter: brightness(1.3); }
    70%  { transform: scale(0.96); }
    100% { transform: scale(1); filter: brightness(1); }
  }
  .merged-step.step-flash .mstep-icon {
    animation: icon-pulse 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .merged-step-last {
    padding-bottom: 0;
  }
  .mstep-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mstep-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }
  .mstep-num.s1 { color: var(--lime); }
  .mstep-num.s2 { color: var(--hot); }
  .mstep-num.s3 { color: var(--electric); }
  .mstep-num.s4 { color: #a78bfa; }
  .mstep-line {
    display: none;
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, #2a2a2a, transparent);
    margin-top: 8px;
    min-height: 40px;
  }
  .mstep-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 0.75rem;
  }
  .mstep-body h3 {
    font-weight: 700;
  }
  .mstep-body p {
    margin-bottom: 0.75rem;
  }
  @media (max-width: 768px) {
    .merged-grid { grid-template-columns: 1fr; gap: 2rem; }
    .merged-left { position: static; }
    .how-bg {
      width: 100%;
      left: 0;
      -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    .how-bg img { opacity: 0.2; }
    .how-bg-fade {
      background:
        linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.6) 100%),
        linear-gradient(to right, transparent 60%, rgba(10,10,10,0.8) 100%);
    }
    .merged-left-wrapper { position: static; }
  }

  /* PORTFOLIO */
  .work-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 3rem;
  }
  .work-header-left {
    /* existing heading styles apply naturally */
  }
  .work-header-right {
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
  .work-quote {
    position: relative;
    border-left: none;
    padding: 2rem 2rem 1.75rem;
    margin: 0;
    background: #111;
    border-radius: 16px;
    border: 1px solid #1e1e1e;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .work-quote:hover {
    border-color: rgba(212,255,0,0.2);
    box-shadow: 0 0 40px rgba(212,255,0,0.05);
  }
  .work-quote-mark {
    position: absolute;
    top: -1.5rem;
    left: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10rem;
    line-height: 1;
    color: var(--lime);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    user-select: none;
  }
  .work-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: var(--lime);
    border-radius: 2px;
    transition: height 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .work-quote.quote-visible::before {
    height: 100%;
  }
  .work-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(212,255,0,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .work-quote p {
    position: relative;
    z-index: 1;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #ccc;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
  }
  .work-quote.quote-visible p {
    opacity: 1;
    transform: translateY(0);
  }
  .work-quote cite {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 0.72rem;
    color: var(--lime);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.9s;
  }
  .work-quote.quote-visible cite {
    opacity: 1;
  }
  .work-quote-cta {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--lime);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 1.1s, transform 0.4s ease 1.1s;
  }
  .work-quote.quote-visible .work-quote-cta {
    opacity: 1;
    transform: translateY(0);
  }
  .work-quote-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(212,255,0,0.3);
  }
  .portfolio-grid { margin-top: 3rem; }
  .port-row-ugc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .port-row-ugc .port-thumb {
    aspect-ratio: 9/14;
  }
  .port-row-campaign {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: start;
  }
  .port-row-campaign .port-thumb {
    aspect-ratio: 16/9;
  }
  .port-campaign-info {
    align-self: stretch;
    display: flex;
  }
  .port-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0 1rem 2.5rem;
    height: 100%;
    box-sizing: border-box;
    border-left: 2px solid rgba(212,255,0,0.25);
  }
  .port-quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.8;
    color: var(--lime);
    opacity: 0.6;
    user-select: none;
  }
  .port-quote-text {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-style: italic;
    color: var(--offwhite);
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
  }
  .port-quote-sub {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .port-thumb.ugc3 { background: #1a1a1a; }
  .port-card {
    background: #0f0f0f; border: 1px solid #1e1e1e; border-radius: var(--card-radius);
    overflow: hidden; display: flex; flex-direction: column;
  }
  .port-thumb {
    aspect-ratio: 9/14;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .port-thumb.ugc1 { background: var(--lime); }
  .port-thumb.ugc2 { background: #1a1a1a; }
  .port-thumb.campaign { background: #1a1a1a; border-bottom: 1px solid #2a2a2a; }
  .port-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
  }
  .port-thumb.is-playing .port-overlay {
    opacity: 1;
  }
  .port-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.85rem;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  }
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .play-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
  }
  .play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0,0,0,0.75);
  }
  .port-thumb.is-playing .play-icon {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .port-thumb.is-playing:hover .play-icon {
    opacity: 1;
    pointer-events: auto;
  }
  .port-tag {
    background: rgba(10,10,10,0.85); color: var(--offwhite);
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 0.3rem 0.6rem; border-radius: 100px;
  }
  .port-tag.lime { background: var(--ink); color: var(--lime); }
  .port-tag.hot { background: var(--ink); color: var(--hot); }
  .port-tag.elec { background: var(--ink); color: var(--electric); }
  .port-tag.purple { background: var(--ink); color: #a78bfa; }
  .port-info { padding: 1.1rem 1.25rem; }
  .port-info .p-label { font-size: 0.95rem; color: var(--offwhite); font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 0; }
  .port-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
  .port-info p { font-size: 0.88rem; color: #bbb; line-height: 1.55; }


  /* MIX OPTIONS */
  /* ── FORMATS SECTION ── */
  .formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }
  .formats-left {
    position: sticky;
    top: 100px;
  }
  .formats-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .fmt-card {
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .fmt-card:first-child {
    border-top: 1px solid #1a1a1a;
  }
  .fmt-card:hover {
    background: rgba(255,255,255,0.02);
  }
  .fmt-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .fmt-card-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .fmt-counter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    min-width: 60px;
    flex-shrink: 0;
  }
  .fmt-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--offwhite);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .fmt-popular-badge {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--lime);
    color: var(--ink);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
  }
  .fmt-toggle {
    font-size: 1.4rem;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    width: 24px;
    text-align: center;
  }
  .fmt-card.fmt-card-open .fmt-toggle {
    transform: rotate(45deg);
    color: var(--lime);
  }
  .fmt-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
  }
  .fmt-card.fmt-card-open .fmt-card-body {
    max-height: 300px;
  }
  .fmt-desc {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.65;
    padding-bottom: 1.25rem;
    max-width: 480px;
  }
  .fmt-visual {
    display: flex;
    gap: 0.6rem;
    padding-bottom: 1.75rem;
  }
  .fmt-ad {
    flex: 1;
    aspect-ratio: 9/14;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.6rem;
    max-width: 80px;
  }
  .fmt-ad span {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .fmt-ad-ugc {
    background: var(--lime);
  }
  .fmt-ad-ugc span {
    color: var(--ink);
  }
  .fmt-ad-camp {
    background: #1a1a1a;
    border: 1px solid var(--electric);
  }
  .fmt-ad-camp span {
    color: var(--electric);
  }

  /* ABOUT SECTION */
  .about-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem;
  }
  .about-card {
    background: #0f0f0f; border: 1px solid #1e1e1e; border-radius: var(--card-radius);
    padding: 2rem; display: flex; flex-direction: row; gap: 1.5rem; align-items: flex-start;
  }
  /* ── ABOUT PHOTO ── */
  .about-carousel {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    border: 1px solid #1e1e1e;
  }
  .about-slide {
    width: 100%;
    height: 100%;
  }
  .about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  #carouselWolf .about-slide img {
    object-position: center 20%;
  }
  .about-slide.slide-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px dashed #2a2a2a;
  }
  .about-slide.slide-empty::after {
    content: 'Add photo';
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
  }
  .about-name { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
  .about-role { font-size: 0.78rem; color: var(--lime); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 1rem; }
  .about-card.jans .about-role { color: var(--hot); }
  .about-bio { font-size: 0.97rem; line-height: 1.65; color: #bbb; }
  .about-bottom {
    margin-top: 2.5rem; padding: 1.75rem 2rem;
    background: rgba(212,255,0,0.06); border: 1px solid rgba(212,255,0,0.2);
    border-radius: var(--card-radius);
    display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center;
  }
  .about-bottom .ab-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--lime); color: var(--ink);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700;
  }
  .about-bottom p { font-size: 0.92rem; color: #ddd; line-height: 1.65; }
  .about-bottom strong { color: var(--lime); }


  .cta-section {
    background: var(--lime); border-radius: 24px;
    padding: 4rem 3rem; text-align: center; margin: 2rem;
    max-width: 1060px; margin-left: auto; margin-right: auto;
  }
  .cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 7vw, 6.5rem); color: var(--ink); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1rem; }
  .cta-section p { color: rgba(0,0,0,0.6); margin-bottom: 2rem; font-size: 1rem; }
  .cta-section .btn-dark {
    background: var(--ink); color: var(--lime); padding: 1rem 2.5rem;
    border-radius: 100px; font-weight: 700; font-size: 1rem; border: none;
    cursor: pointer; transition: transform 0.15s;
  }
  .cta-section .btn-dark:hover { transform: scale(1.04); }

  footer {
    border-top: 1px solid #1a1a1a; padding: 3.5rem 2rem 2.5rem;
    max-width: 1100px; margin: 0 auto;
  }
  footer .logo { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .footer-top { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 2.5rem; }
  .footer-cta-line {
    font-family: 'Bebas Neue', sans-serif; letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--offwhite);
  }
  .footer-email {
    color: var(--lime); text-decoration: none;
    font-size: 0.95rem; font-weight: 600; transition: opacity 0.2s;
  }
  .footer-email:hover { opacity: 0.7; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem; border-top: 1px solid #1a1a1a; flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--muted); }
  .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid #2a2a2a; color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-social a:hover { border-color: var(--lime); color: var(--lime); }

  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }
    .work-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .work-quote { padding: 1.5rem; }
    .work-quote-mark { font-size: 7rem; }
    .work-quote p { font-size: 0.92rem; }

    .about-wrap { grid-template-columns: 1fr; }
    .about-bottom { grid-template-columns: 1fr; }
    nav .nav-links { display: none; }
    nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
  }

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

  /* ── MARQUEE ── */
  .logos-row { display: none; }
  .marquee-track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
  .marquee-inner {
    display: flex; align-items: center; gap: 3.5rem;
    width: max-content; animation: marquee-scroll 24s linear infinite;
  }
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── FULL-BLEED FORMAT SECTION ── */
  .section-fullbleed { max-width: 100%; background: #0f0f0f; padding: 0; }

  /* ── CTA STRIPE + VIGNETTE ── */
  .cta-section { position: relative; overflow: hidden; }
  .cta-section::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background-image: repeating-linear-gradient(
      45deg, rgba(0,0,0,0.055) 0, rgba(0,0,0,0.055) 1px, transparent 1px, transparent 10px
    );
  }
  .cta-section::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.14) 100%);
  }
  .cta-section > * { position: relative; z-index: 1; }

  /* ── LEAD CAPTURE FORM ── */
  .lead-form-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .lead-form-wrap.form-open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.15);
  }
  .lead-form-intro {
    font-size: 0.88rem;
    color: rgba(0,0,0,0.5);
    margin-bottom: 1.75rem;
    text-align: center;
  }
  .lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .lead-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .lead-field-full {
    grid-column: 1 / -1;
  }
  .lead-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.7);
  }
  .lead-input {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.88rem;
    color: #0A0A0A;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
  }
  .lead-input::placeholder {
    color: rgba(0,0,0,0.35);
  }
  .lead-input:focus {
    border-color: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  }
  .lead-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  .lead-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
  }
  .lead-submit {
    background: #0A0A0A;
    color: var(--lime);
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    align-self: center;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
  }
  .lead-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .lead-privacy {
    font-size: 0.72rem;
    color: rgba(0,0,0,0.35);
    text-align: center;
    margin-top: 0.5rem;
  }
  .form-success {
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
  }
  .lead-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }
  .lead-success.visible {
    display: block;
  }
  .lead-success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0A0A0A;
    color: var(--lime);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
  }
  .lead-success h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 0.5rem;
  }
  .lead-success p {
    font-size: 0.88rem;
    color: rgba(0,0,0,0.5);
  }

  /* ── HAMBURGER + MOBILE MENU ── */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px; z-index: 101;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px; background: var(--lime); border-radius: 1px;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.22s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(-14px); pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
  .mobile-menu-inner {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; gap: 2rem; padding: 2rem;
  }
  .mobile-menu-inner a {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 10vw, 3.5rem);
    color: #ffffff !important; text-decoration: none; letter-spacing: -0.02em; transition: color 0.2s;
    opacity: 1 !important;
  }
  .mobile-menu-inner a:hover { color: var(--lime) !important; }
  .mobile-menu-inner .nav-cta {
    margin-top: 0.5rem; font-size: 1rem; padding: 0.85rem 2.25rem;
    background: transparent !important; color: var(--lime) !important;
    border: 2px solid var(--lime) !important;
  }
  .mobile-menu-inner .nav-cta:hover { background: var(--lime) !important; color: var(--ink) !important; }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── FAQ ACCORDION ── */
  .faq-list { margin-top: 3rem; border-top: 1px solid #1a1a1a; }
  .faq-item { border-bottom: 1px solid #1a1a1a; }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 1.4rem 0; background: none; border: none;
    color: var(--offwhite); font-family: 'Satoshi', sans-serif;
    font-size: 1rem; font-weight: 600; text-align: left; gap: 1.5rem;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--lime); }
  .faq-item.faq-open .faq-q { color: var(--lime); }
  .faq-icon {
    font-size: 1.4rem; font-weight: 300; line-height: 1; flex-shrink: 0; color: var(--muted);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color 0.2s;
    display: inline-block;
  }
  .faq-item.faq-open .faq-icon { transform: rotate(45deg); color: var(--lime); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1); }
  .faq-item.faq-open .faq-a { max-height: 300px; }
  .faq-a p { padding: 0 2rem 1.5rem 0; font-size: 0.92rem; color: var(--offwhite); line-height: 1.7; }

  /* ── RESULTS VISUAL UPGRADES ── */
  #results {
    background: radial-gradient(ellipse 80% 60% at 50% 40%, #111111 0%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(2rem, calc(50vw - 550px));
    padding-right: max(2rem, calc(50vw - 550px));
  }
  #results .section-h {
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    margin-bottom: 0.5rem;
  }
  #results .section-sub {
    font-size: 0.82rem;
    margin-bottom: 0;
  }
  #results::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }
  #results > *:not(.results-bg) {
    position: relative;
    z-index: 1;
  }
  #faq {
    position: relative;
    overflow: hidden;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(2rem, calc(50vw - 550px));
    padding-right: max(2rem, calc(50vw - 550px));
  }
  #faq > *:not(.faq-bg) {
    position: relative;
    z-index: 1;
  }
  .faq-bg {
    position: absolute;
    top: 0;
    left: -5vw;
    width: 110vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%
    );
  }
  .faq-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.28;
    filter: grayscale(10%);
    display: block;
  }
  .faq-bg-fade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        transparent 12%,
        transparent 88%,
        rgba(10,10,10,0.4) 100%
      );
    pointer-events: none;
  }
  @keyframes winner-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(245,242,236,0.4), 0 0 40px rgba(245,242,236,0.15); }
    50%       { box-shadow: 0 0 30px rgba(245,242,236,0.6), 0 0 60px rgba(245,242,236,0.25); }
  }
  .winner-bar { animation: winner-pulse 2.5s ease-in-out infinite; }


  .cmp-table {
    margin-top: 2.5rem;
    background: #0f0f0f; border: 1px solid #1e1e1e; border-radius: 16px; overflow: hidden;
  }
  .cmp-row {
    display: grid; grid-template-columns: 1fr 120px 120px;
    border-bottom: 1px solid #1a1a1a; align-items: center;
  }
  .cmp-row:last-child { border-bottom: none; }
  .cmp-row.cmp-head {
    background: #141414; border-bottom: 1px solid #2a2a2a;
  }
  .cmp-row:nth-child(odd):not(.cmp-head) { background: #0f0f0f; }
  .cmp-row:nth-child(even):not(.cmp-head) { background: transparent; }
  .cmp-cell { padding: 1rem 1.25rem; }
  .cmp-cell.cmp-center { text-align: center; }
  .cmp-label { font-size: 0.88rem; color: #ccc; }
  .cmp-head .cmp-cell { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
  .cmp-head .cmp-cell:nth-child(2) { color: var(--lime); }
  .cmp-head .cmp-cell:nth-child(3) { color: #555; }
  .cmp-check { color: var(--lime); font-size: 1.1rem; }
  .cmp-cross { color: #333; font-size: 1.1rem; }
  .results-caption {
    font-size: 0.78rem; color: #bbb; text-align: center; margin-top: 1.25rem;
  }
  @media (max-width: 768px) {
    .results-cols { grid-template-columns: 1fr; }
    .cmp-row { grid-template-columns: 1fr 80px 80px; }
    .cmp-cell { padding: 0.85rem 1rem; }
    .results-bg { display: none; }
    .faq-bg {
      left: 0;
      width: 100%;
    }
    .faq-bg img { opacity: 0.2; }
  }

  /* ── DATA DASHBOARD ── */
  /* ── RESULTS HERO STAT ── */
  .results-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
  }
  .results-hero-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 12vw, 9rem);
    line-height: 0.9;
    color: var(--lime);
    flex-shrink: 0;
    letter-spacing: -0.02em;
  }
  .results-hero-claim {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--offwhite);
    line-height: 1.45;
    font-weight: 500;
    margin: 0 0 0.75rem;
  }
  .results-hero-source {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── RESULTS SPLIT LAYOUT ── */
  .results-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .results-stats-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 1.25rem;
  }
  .results-stat-item {
    padding: 2rem 0;
  }
  .results-stat-divider {
    height: 1px;
    background: #1e1e1e;
  }
  .results-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .results-stat-label {
    font-size: 0.95rem;
    color: var(--offwhite);
    line-height: 1.55;
    margin: 0 0 0.5rem;
  }
  .results-stat-source {
    font-size: 0.68rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── WJ CHART CARD ── */
  .wj-chart-card {
    margin-top: 1.25rem;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .wj-chart-card::before {
    content: '';
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.02) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .wj-chart-card > * { position: relative; z-index: 1; }
  .wj-chart-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 1.25rem 1.5rem 0; flex-wrap: wrap; gap: 1rem;
  }
  .wj-chart-subtitle { font-size: 0.82rem; color: #666; margin-top: 0.4rem; }
  .wj-chart-legend { display: flex; gap: 1.25rem; align-items: center; }
  .wj-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: #888; }
  .wj-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .wj-chart-body { padding: 1rem 1.5rem 0; }
  .wj-chart-area {
    display: flex; align-items: stretch; gap: 1rem;
    height: 180px; position: relative;
  }
  .wj-y-axis {
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 0 0 28px; width: 28px; flex-shrink: 0;
  }
  .wj-y-axis span { font-size: 0.6rem; color: #333; text-transform: uppercase; letter-spacing: 0.06em; }
  .wj-grid {
    position: absolute; left: 0; right: 0; top: 0; bottom: 28px;
    display: flex; flex-direction: column; justify-content: space-between; pointer-events: none;
  }
  .wj-grid-line { width: 100%; height: 1px; background: rgba(255,255,255,0.04); }
  .wj-bars {
    display: flex; align-items: flex-end; gap: 1.5rem;
    flex: 1; padding-left: 0; position: relative; z-index: 1;
  }
  .wj-bar-col {
    display: flex; flex-direction: column; align-items: center;
    flex: 1; height: 100%; justify-content: flex-end; position: relative;
  }
  .wj-bar-track {
    width: 100%; display: flex; align-items: flex-end; height: 140px; max-width: 120px;
  }
  .wj-bar-fill {
    width: 100%; height: 0%; border-radius: 8px 8px 0 0;
    transition: height 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .wj-bar-meta {
    display: flex; flex-direction: column; align-items: center;
    gap: 2px; margin-top: 0.6rem; padding-bottom: 4px;
  }
  .wj-bar-name { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #555; }
  .wj-bar-stat { font-size: 0.68rem; color: #444; }
  .wj-bar-winner { position: relative; }
  .wj-winner-badge {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    background: var(--hot); color: #fff;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem; border-radius: 100px; white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
  }
  .wj-winner-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #fff;
    animation: pulse 1.5s ease-in-out infinite;
  }
  .wj-chart-footer {
    display: flex; align-items: center; justify-content: center;
    gap: 0; border-top: 1px solid #1a1a1a; margin-top: 1rem;
  }
  .wj-footer-stat {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; padding: 0.85rem 1.5rem; flex: 1; text-align: center;
  }
  .wj-footer-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
    line-height: 1; letter-spacing: -0.02em; color: var(--offwhite);
  }
  .wj-footer-label { font-size: 0.65rem; color: #555; text-transform: uppercase; letter-spacing: 0.08em; }
  .wj-footer-divider { width: 1px; height: 40px; background: #1e1e1e; flex-shrink: 0; }
  .comparison-half-label {
    display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.12em; padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
  }
  .label-wj { background: rgba(255,255,255,0.05); color: var(--offwhite); border: 1px solid #2a2a2a; }

  .swipe-hint { display: none; }

  .portfolio-disclaimer {
    text-align: left;
    font-size: 0.92rem;
    color: #aaa;
    margin-top: 2rem;
    letter-spacing: 0.03em;
  }

  /* ── MOBILE OPTIMISATION PASS ── */
  @media (max-width: 768px) {
    /* 1. Hero */
    .hero-outer { min-height: unset; }
    .hero { padding: 5.5rem 1.25rem 3rem; gap: 2rem; min-height: unset; }
    .hero h1 { font-size: clamp(3.8rem, 17vw, 5.5rem); }
    .hero-sub-desktop { display: none; }
    .hero-sub-mobile { display: block; }
    .hamburger { display: flex !important; }
    .mobile-menu { display: block !important; }
    nav .nav-links { display: none; }
    nav .nav-cta { display: none; }
    .hero-sub { font-size: 0.95rem; }
    .hero-actions { flex-direction: row; gap: 0.5rem; flex-wrap: nowrap; }
    .btn-primary, .btn-secondary { width: auto; flex: 1; text-align: center; padding: 0.65rem 0.85rem; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

    /* 2. Section global */
    section { padding: 3.5rem 1.25rem; }
    #work { padding-top: 1.5rem; }
    #work .section-h { font-size: clamp(3.2rem, 14vw, 5rem); line-height: 1; }
    #about { padding-top: 1.5rem; }
    .section-h { font-size: clamp(3rem, 13vw, 4.5rem); }
    #results .section-h { font-size: clamp(3rem, 13vw, 4.5rem); }
    .section-sub { font-size: 0.92rem; }

    /* 3. Merged steps */
    .merged-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .merged-left { position: static; }
    .merged-step { grid-template-columns: 40px 1fr; gap: 1rem; }
    .mstep-num { font-size: 1.6rem; }
    .steps-progress-track { display: none; }
    .merged-step .mstep-body { opacity: 1; }
    .merged-step .mstep-num.s1 { color: var(--lime); }
    .merged-step .mstep-num.s2 { color: var(--hot); }
    .merged-step .mstep-num.s3 { color: var(--electric); }
    .merged-step .mstep-num.s4 { color: #a78bfa; }
    .merged-step .mstep-icon { opacity: 1; }
    .merged-step .mstep-body h3 { color: var(--offwhite); }
    .merged-step .mstep-body p { color: #bbb; }

    /* 4. Results bar charts */
    .results-cols { grid-template-columns: 1fr; gap: 1rem; }
    .chart-area { height: 160px; }
    .bar-wrap { width: 52px; }

    /* 5. Results redesign */
    .results-hero { flex-direction: column; gap: 1rem; padding: 2rem 0; }
    .results-hero-num { font-size: clamp(5rem, 18vw, 7rem); }
    .results-split { grid-template-columns: 1fr; gap: 2rem; }

    /* 6. Portfolio */
    .port-row-ugc {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 0.85rem;
      padding-bottom: 0.75rem;
    }
    .port-row-ugc .port-card {
      flex: 0 0 72vw;
      max-width: 280px;
      scroll-snap-align: start;
    }
    .port-row-campaign {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .port-info-card { padding: 1rem 0 1rem 1.25rem; }

    /* 7. Format mix */
    .formats-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
    .formats-left { position: static; }
    .fmt-counter { font-size: 1.2rem; min-width: 50px; }
    .fmt-title { font-size: 0.95rem; }
    .fmt-ad { max-width: 60px; }

    /* 8. About */
    .about-wrap { grid-template-columns: 1fr; }
    .about-photo-placeholder { height: 180px; }
    .about-bottom { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
    .about-carousel { width: 105px; height: 105px; flex-shrink: 0; align-self: center; }
    .about-name { font-size: 1.6rem; }
    .about-bio { font-size: 0.85rem; line-height: 1.4; }

    /* 9. FAQ */
    .faq-q { font-size: 0.92rem; padding: 1.1rem 0; }
    .faq-a p { font-size: 0.85rem; }

    /* 10. CTA section */
    .cta-section { padding: 3rem 1.5rem; margin: 1rem; border-radius: 16px; }
    .cta-section h2 { font-size: clamp(3rem, 14vw, 5rem); }
    .cta-section .btn-dark { width: 100%; padding: 1rem; }
    .lead-form-row { grid-template-columns: 1fr; }
    .lead-field-full { grid-column: 1; }
    .lead-submit { width: 100%; }

    /* 11. Footer */
    footer { padding: 2.5rem 1.25rem 2rem; }
    .footer-cta-line { font-size: clamp(2.8rem, 13vw, 4rem); }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

    /* 12. Sticky CTA bar — hidden on mobile, replaced by floating pill button */
    .sticky-cta-bar { display: none !important; }

    /* 13. Logos bar */
    .logos-bar { padding: 1.25rem 1rem; }

    /* 17. Portfolio */
    .work-quote { display: none; }
    .port-row-ugc::-webkit-scrollbar { display: none; }
    .port-row-ugc { scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .port-info { padding: 0.85rem 1rem; }
    .port-info h4 { font-size: 0.85rem; }
    .port-info p { font-size: 0.78rem; line-height: 1.45; }
    .port-info-card { padding: 1rem 0 1rem 1rem; }
    .port-quote-mark { font-size: 2.5rem; }
    .port-quote-text { font-size: 0.85rem; line-height: 1.4; }
    .port-quote-sub { font-size: 0.65rem; letter-spacing: 0.08em; }
    .play-icon { width: 44px; height: 44px; }
    .play-icon svg { width: 15px; height: 15px; margin-left: 2px; }
    .port-thumb.is-playing .play-icon,
    .port-thumb.is-playing:hover .play-icon { opacity: 0 !important; pointer-events: none !important; }
    .swipe-hint {
      display: block; font-size: 0.7rem; color: #444; text-align: center;
      margin-top: 0.5rem; letter-spacing: 0.06em; text-transform: uppercase;
    }

    /* 20. Merged steps condensed */
    .merged-grid { gap: 1.75rem; }
    .merged-step { padding-bottom: 1.5rem; }
    .merged-step-last { padding-bottom: 0; }
    .mstep-body p {
      font-size: 0.8rem; line-height: 1.5;
      display: -webkit-box; -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; overflow: hidden; color: #888;
    }
    .mstep-body h3 { font-size: 0.92rem; }
    .mstep-icon { width: 32px; height: 32px; font-size: 0.95rem; margin-bottom: 0.5rem; }
    .card-tag { font-size: 0.62rem; }
    .process-wrap { margin-top: 1.75rem; }
    .process-step { padding: 1.1rem 0; gap: 1rem; grid-template-columns: 48px 1fr; }
    .step-num { font-size: 2rem; }
    .step-body h3 { font-size: 0.92rem; margin-bottom: 0.25rem; }
    .step-body p {
      font-size: 0.8rem; line-height: 1.5;
      display: -webkit-box; -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; overflow: hidden; color: #888;
    }

    /* 18. Tighten results section */
    #results { padding: 3rem 1.25rem; overflow: hidden; }
    .wj-chart-card { margin-top: 1.5rem; overflow: hidden; width: 100%; box-sizing: border-box; }
    .wj-chart-header { padding: 1.25rem 1rem 0; }
    .wj-chart-body { padding: 1rem 0.75rem 0; overflow: hidden; }
    .wj-chart-area { height: 220px; gap: 0.4rem; overflow: visible; }
    .wj-bars { gap: 0.4rem; padding-left: 0; }
    .wj-bar-track { height: 150px; max-width: none; width: 100%; }
    .wj-y-axis { display: none; }
    .wj-bar-name { font-size: 0.6rem; }
    .wj-bar-stat { font-size: 0.56rem; }
    .wj-bar-meta { margin-top: 0.4rem; }
    .wj-footer-stat { padding: 0.85rem 0.5rem; }
    .wj-footer-num { font-size: 1.6rem; }
    .wj-footer-label { font-size: 0.6rem; }
    .wj-winner-badge { font-size: 0.55rem; padding: 0.2rem 0.5rem; white-space: nowrap; overflow: visible; }

    /* 19. Tighten global section spacing */
    section { padding-top: 3rem; padding-bottom: 3rem; }
  }

  /* ── FLOATING MOBILE CTA ── */
  .mobile-cta-float {
    display: none;
  }
  @media (max-width: 768px) {
    .mobile-cta-float {
      display: block;
      position: fixed;
      bottom: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--lime);
      color: var(--ink);
      font-family: 'Satoshi', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      white-space: nowrap;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(212,255,0,0.35), 0 2px 8px rgba(0,0,0,0.4);
      z-index: 999;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .mobile-cta-float:active {
      transform: translateX(-50%) scale(0.96);
      box-shadow: 0 2px 12px rgba(212,255,0,0.25);
    }
    /* Hide when contact section is in view */
    .mobile-cta-float.cta-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
  }
