/* ================================================
   WHAT I DO PAGE
   ================================================ */

/* ---- Headline reveal stagger ---- */
.wid-reveal-1 { transition-delay: 0.05s; }
.wid-reveal-2 { transition-delay: 0.2s; }
.wid-reveal-3 { transition-delay: 0.35s; }

/* ---- Hero ---- */
.wid-hero {
  background: var(--white);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 1;
}

.wid-hero-inner {
  margin-left: 130px;
  margin-bottom: 100px;
  margin-top: 200px;
}

.wid-headline-top,
.wid-headline {
  font-family: var(--font-main);
  font-size: 100px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0 0 0 -6px;
}

.wid-headline {
  margin-bottom: 45px;
}

/* ---- Shared section label ---- */
.wid-section-label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

/* ---- Section 2 content wrapper (scrolls over sticky hero) ---- */
.wid-content {
  position: relative;
  z-index: 10;
}

/* ================================================
   BRAND ANIMATION SECTION
   ================================================ */
.wid-anim-section {
  position: relative;
  background: #000;
  height: 90vh;
  overflow: hidden;
}

/* ── Canvas — 75% wide, anchored left ── */
.wa-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  display: block;
  image-rendering: auto;
}

/* ================================================
   LOGO MARQUEE
   ================================================ */
.wid-marquee-section {
  background: #fff;
  padding: 110px 0 110px;
  overflow: hidden;
}

.wid-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: wid-marquee-scroll 35s linear infinite;
  will-change: transform;
}

.wid-marquee-section:hover .wid-marquee-track {
  animation-play-state: paused;
}

.wid-marquee-item {
  flex-shrink: 0;
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wid-marquee-item--lg {
  width: 323px;
  height: 161px;
}

.wid-marquee-item--md {
  width: 288px;
  height: 144px;
}

.wid-marquee-item--salesforce {
  width: 269px;
  height: 135px;
}

.wid-marquee-item--walmart {
  width: 298px;
  height: 149px;
}

.wid-marquee-item--sm {
  width: 180px;
  height: 90px;
}

.wid-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
  pointer-events: none;
}

.wid-marquee-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes wid-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Capabilities ---- */
.wid-cap-section {
  background: var(--black);
  padding: 100px 130px 100px;
}

.wid-cap-section .heading-13 {
  margin-bottom: 40px;
  margin-left: 0;
  margin-top: 0;
  color: var(--white);
}

.wid-cap-section .quick-stack-13 {
  width: 100%;
  margin-left: 0;
}

.wid-cap-section .text-block-135,
.wid-cap-section .text-block-136,
.wid-cap-section .text-block-137 {
  color: var(--white);
}

.wid-cap-section .text-span-93 {
  color: rgba(255, 255, 255, 0.5);
}

.wid-cap-section .text-span-137,
.wid-cap-section .text-span-127 {
  color: var(--white);
}

.wid-cap-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 72px;
}

.wid-cap-section .wid-section-label {
  color: rgba(255, 255, 255, 0.75);
}

.wid-cap-statement {
  font-family: var(--font-main);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}


/* ================================================
   TEXT MARQUEE BANNER
   ================================================ */
.wid-text-marquee {
  background: var(--white);
  padding: 98px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wid-text-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wid-tm-scroll 30s linear infinite;
  will-change: transform;
}

.wid-tm-item {
  font-family: var(--font-main);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  white-space: nowrap;
  padding-right: 24px;
}

.wid-tm-item--light {
  font-weight: 700;
  color: var(--black);
}

.wid-tm-dot {
  color: var(--black);
  font-weight: 400;
  margin-left: 8px;
}

@keyframes wid-tm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wid-text-marquee:hover .wid-text-marquee-track {
  animation-play-state: paused;
}

/* ================================================
   HOW I WORK SECTION
   ================================================ */
.wid-hiw-section {
  background: var(--black);
  padding: 100px 130px 110px;
}

.wid-hiw-inner {
  max-width: 100%;
}

.wid-hiw-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 72px;
}

.hiw-plus {
  font-weight: 400;
}

.wid-hiw-section .wid-section-label {
  color: rgba(255, 255, 255, 0.75);
}

.wid-hiw-statement {
  font-family: var(--font-main);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.wid-hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.wid-hiw-step {
  padding: 48px 48px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.wid-hiw-step:nth-child(2) {
  padding-left: 48px;
}

.wid-hiw-step:last-child {
  padding-left: 48px;
  padding-right: 0;
  border-right: none;
}

.wid-hiw-step-num {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.wid-hiw-step-title {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
}

.wid-hiw-step-desc {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .wid-hiw-section {
    padding: 80px 32px 90px;
  }

  .wid-hiw-header,
  .wid-cap-header {
    margin-bottom: 48px;
  }

  .wid-hiw-steps {
    grid-template-columns: 1fr;
  }

  .wid-hiw-step,
  .wid-hiw-step:nth-child(2),
  .wid-hiw-step:last-child {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .wid-hiw-step:last-child {
    border-bottom: none;
  }

  .wid-hiw-step-desc {
    max-width: 100%;
  }

  .wid-hero-inner {
    margin-left: 32px;
    margin-bottom: 80px;
  }

  .wid-headline-top,
  .wid-headline {
    font-size: clamp(52px, 10vw, 90px);
  }

  .wid-cap-section {
    padding: 80px 32px;
  }

  .wid-cap-section .quick-stack-13 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 600px) {
  .wid-hiw-section {
    padding: 60px 20px 70px;
  }

  .wid-hiw-step-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .wid-hiw-step-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .wid-hiw-statement,
  .wid-cap-statement {
    font-size: clamp(20px, 5vw, 26px);
  }

  .wid-hero-inner {
    margin-left: 20px;
    margin-top: 100px;
    margin-bottom: 60px;
  }

  .wid-headline-top,
  .wid-headline {
    font-size: clamp(40px, 12vw, 65px);
  }

  .wid-cap-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 56px;
  }

  .wid-anim-section {
    height: 50vh;
  }

  .wa-canvas {
    width: 100%;
  }
}

/* Reduce marquee padding on small screens */
@media (max-width: 600px) {
  .wid-text-marquee {
    padding: 48px 0;
  }
  .wid-marquee-section {
    padding: 60px 0;
  }
}

@media (max-width: 479px) {
  .wid-cap-section .quick-stack-13 {
    grid-template-columns: 1fr;
  }
  .wid-headline-top,
  .wid-headline {
    font-size: clamp(34px, 11vw, 56px);
  }
}
