/* Aura tint for section */
/* Layout */
#WhatCanWeDo{
  scroll-margin-top: -2.4rem;
}
.wcwd {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 6rem) 1.5rem;
  gap: 2rem;
}

.wcwd h2 {
  margin-bottom: .5rem;
}

.wcwd p.lead {
  color: #eaeaea;
  max-width: 60ch;
}

.video-shell {
  width: min(1100px, 55vw);
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(255, 255, 255, .04);
  margin-top: 3rem;
}

.video-shell::after {
  content: "Drop your video URL in whatwedo.js or replace with an iframe.";
  position: absolute;
  inset: auto 0 12px;
  text-align: center;
  color: #cfcfcf;
  font-size: 12px;
}

.video-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .4px;
  color: #111;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .12) 0 10px, rgba(255, 255, 255, .06) 10px 20px);
}

.video-ui {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.video-ring {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5ch;
  font-size: .8rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
/* =========================
   WCWD MOBILE – VIDEO DOMINATES
   ========================= */

@media (max-width: 820px) {
  .wcwd {
    padding: 2.2rem 1rem;
    gap: 1.2rem;
  }

  /* Force video to be big */
  .video-shell {
    width: 90vw;              /* ← THIS is the key */
    max-width: none;          /* kill desktop limits */
    aspect-ratio: 16 / 9;
    margin-top: 1.2rem;
    border-radius: 18px;
  }

  .video-ring {
    width: 88px;
    height: 88px;
    font-size: 22px;
  }

  .section-inner h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .wcwd {
    padding: 2rem 0.75rem;
    gap: 1rem;
  }

  /* Even more dominant on phones */
  .video-shell {
    width: 90vw;
    aspect-ratio: 16 / 9;
    margin-top: 1rem;
    border-radius: 16px;
  }

  .video-ring {
    width: 72px;
    height: 72px;
    font-size: 18px;
  }

  .video-shell::after {
    font-size: 10px;
  }
}

/* Tiny phones */
@media (max-width: 360px) {
  .video-shell {
    width: 92vw;
  }

  .video-ring {
    width: 64px;
    height: 64px;
    font-size: 16px;
  }
}
