/* ============================================================
   STARPECO — PROJECTS: INFRASTRUCTURE IMPACT EXPERIENCE
   ============================================================ */

/* ============================================================
   1. AUTHORITY HOOK
   ============================================================ */
.pw-hook {
  position: relative;
  min-height: 100vh;
  background: #050810;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--offset);
}

.pw-hook-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 64px,
      rgba(255,255,255,0.018) 64px,
      rgba(255,255,255,0.018) 65px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 96px,
      rgba(255,255,255,0.018) 96px,
      rgba(255,255,255,0.018) 97px);
  pointer-events: none;
}

.pw-hook-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,162,79,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.pw-hook-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
  max-width: 960px;
}

.pw-hook-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pw-hook-eyebrow::before,
.pw-hook-eyebrow::after {
  content: "";
  width: 44px; height: 1px;
  background: var(--green);
  opacity: 0.6;
}

.pw-hook.is-live .pw-hook-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.pw-hook-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(100px, 20vw, 220px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: #fff;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pw-hook-count sup {
  font-size: 0.32em;
  vertical-align: super;
  color: var(--green-light);
  letter-spacing: -0.02em;
}

.pw-hook.is-live .pw-hook-count {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.pw-hook-statement {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pw-hook.is-live .pw-hook-statement {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.pw-hook-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 24px);
  color: rgba(255,255,255,0.36);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pw-hook.is-live .pw-hook-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.pw-hook-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: pw-hint-appear 0.6s ease 1.4s forwards;
}
.pw-hook-scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--green) 0%, transparent 100%);
  animation: pw-bar-pulse 2.2s ease-in-out 1.4s infinite;
}
.pw-hook-scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
}

@keyframes pw-hint-appear {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes pw-bar-pulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  65%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ============================================================
   2. FEATURED PROJECTS — Scroll-Trapped Sticky Experience
   ============================================================ */
.pw-featured-trap {
  height: 560vh; /* 3 projects × ~185vh each */
  position: relative;
}

.pw-featured {
  position: sticky;
  top: var(--offset);
  height: calc(100vh - var(--offset));
  overflow: hidden;
  background: #04060c;
}

/* Individual project panels — absolutely stacked */
.pw-feat-proj {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  will-change: opacity;
}

.pw-feat-proj.pw-proj-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Visual (left) panel ---- */
.pw-feat-visual {
  position: relative;
  overflow: hidden;
}

.pw-feat-visual-bg {
  position: absolute;
  inset: -40px;
  will-change: transform;
  transition: transform 0.15s linear;
}

/* Project-specific backgrounds */
.pw-proj--brt4 .pw-feat-visual-bg {
  background:
    repeating-linear-gradient(-50deg,
      transparent, transparent 48px,
      rgba(0,162,79,0.055) 48px, rgba(0,162,79,0.055) 50px),
    radial-gradient(ellipse at 30% 70%, rgba(0,162,79,0.15) 0%, transparent 55%),
    linear-gradient(155deg, rgba(7,17,30,0.82) 0%, rgba(13,31,56,0.72) 55%, rgba(6,14,26,0.85) 100%);
}

.pw-proj--ubungo .pw-feat-visual-bg {
  background:
    repeating-linear-gradient(90deg,
      transparent, transparent 72px,
      rgba(247,148,29,0.045) 72px, rgba(247,148,29,0.045) 74px),
    radial-gradient(ellipse at 60% 30%, rgba(247,148,29,0.12) 0%, transparent 50%),
    linear-gradient(155deg, rgba(16,13,7,0.80) 0%, rgba(30,22,8,0.70) 55%, rgba(12,10,4,0.85) 100%);
}

.pw-proj--flyover .pw-feat-visual-bg {
  background:
    repeating-linear-gradient(0deg,
      transparent, transparent 44px,
      rgba(255,255,255,0.025) 44px, rgba(255,255,255,0.025) 45px),
    repeating-linear-gradient(90deg,
      transparent, transparent 44px,
      rgba(255,255,255,0.018) 44px, rgba(255,255,255,0.018) 45px),
    radial-gradient(ellipse at 50% 50%, rgba(52,52,101,0.3) 0%, transparent 60%),
    linear-gradient(155deg, rgba(8,8,18,0.78) 0%, rgba(16,16,30,0.68) 55%, rgba(5,5,14,0.82) 100%);
}

/* Right fade on visual panel */
.pw-feat-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(4,6,12,0.85) 100%);
  pointer-events: none;
}

/* Large ghost project number */
.pw-feat-visual-num {
  position: absolute;
  bottom: -24px; right: -16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 320px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  transition: color 0.8s ease;
}

.pw-feat-proj.pw-proj-active .pw-feat-visual-num {
  color: rgba(255,255,255,0.04);
}

/* Animated accent line */
.pw-feat-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--green), rgba(0,162,79,0.2));
  transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pw-feat-proj.pw-proj-active .pw-feat-accent-line {
  height: 100%;
  transition-delay: 0.15s;
}

/* ---- Content (right) panel ---- */
.pw-feat-content {
  background: #04060c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
}

.pw-feat-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(0,162,79,0.04) 0%, transparent 55%);
  pointer-events: none;
}

/* Tier badge */
.pw-feat-tier {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-feat-tier::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.pw-feat-proj.pw-proj-active .pw-feat-tier {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

/* Project title */
.pw-feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.pw-feat-proj.pw-proj-active .pw-feat-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* Location */
.pw-feat-location {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-feat-proj.pw-proj-active .pw-feat-location {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

/* Rule */
.pw-feat-rule {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 28px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pw-feat-proj.pw-proj-active .pw-feat-rule {
  width: 100%;
  transition-delay: 0.4s;
}

/* Description */
.pw-feat-desc {
  font-size: 14px;
  line-height: 1.88;
  color: rgba(255,255,255,0.50);
  max-width: 400px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pw-feat-proj.pw-proj-active .pw-feat-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

/* Tags */
.pw-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-feat-proj.pw-proj-active .pw-feat-tags {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.64s;
}
.pw-feat-tag {
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,0.10);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.44);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
}
.pw-feat-tag--green {
  border-color: rgba(0,162,79,0.4);
  color: var(--green-light);
  background: rgba(0,162,79,0.07);
}

/* Scale indicator */
.pw-feat-scale {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,162,79,0.28);
  border-left-width: 3px;
  padding: 10px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pw-feat-proj.pw-proj-active .pw-feat-scale {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.76s;
}

/* ---- Progress navigation ---- */
.pw-feat-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.pw-feat-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, height 0.3s, border-color 0.3s;
  padding: 0;
  border-radius: 3px;
}
.pw-feat-nav-dot:hover {
  background: rgba(255,255,255,0.35);
}
.pw-feat-nav-dot.is-active {
  background: var(--green-light);
  border-color: var(--green);
  height: 22px;
}

/* ---- Project counter ---- */
.pw-feat-counter {
  position: absolute;
  left: 28px;
  bottom: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  z-index: 10;
  transition: opacity 0.3s;
}
.pw-feat-counter span {
  color: rgba(255,255,255,0.55);
}


/* ============================================================
   3. TIMELINE / FLOW
   ============================================================ */
.pw-timeline {
  padding: 120px 0 100px;
  background: var(--dark);
  position: relative;
}

/* Vertical spine */
.pw-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--border-dim) 10%,
    var(--border-dim) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.pw-tl-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.pw-tl-rows {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Base row state */
.pw-tl-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pw-tl-row.tl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Tier 1: Flagship rows ---- */
.pw-tl-row--t1 {
  background: var(--navy);
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 0;
  border-left: 4px solid var(--green);
  position: relative;
  overflow: hidden;
}
.pw-tl-row--t1::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 95% 50%, rgba(0,162,79,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.pw-tl-row--t1 .pw-tl-index {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  padding: 36px 24px;
  flex-shrink: 0;
}
.pw-tl-row--t1 .pw-tl-body {
  padding: 36px 32px 36px 8px;
  position: relative; z-index: 1;
}
.pw-tl-row--t1 .pw-tl-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}
.pw-tl-row--t1 .pw-tl-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 8px;
}
.pw-tl-row--t1 .pw-tl-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 540px;
}
.pw-tl-row--t1 .pw-tl-badge {
  padding: 28px 36px;
  text-align: right;
  border-left: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
  white-space: nowrap;
}
.pw-tl-row--t1 .pw-tl-badge .badge-scale {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 6px;
}
.pw-tl-row--t1 .pw-tl-badge .badge-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.pw-tl-badge-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ---- Tier 2: Regional rows ---- */
.pw-tl-row--t2 {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--navy);
  max-width: 800px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.55s ease, transform 0.55s ease,
              box-shadow 0.25s ease;
}
.pw-tl-row--t2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) translateX(4px) !important;
}
.pw-tl-row--t2:nth-child(even) {
  margin-left: auto;
  border-left-width: 1px;
  border-right: 3px solid var(--navy);
}
.pw-tl-row--t2:nth-child(even):hover {
  transform: translateY(-2px) translateX(-4px) !important;
}
.pw-tl-row--t2 .pw-tl-index {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(52,52,101,0.10);
  line-height: 1;
  padding: 24px 18px;
}
.pw-tl-row--t2 .pw-tl-body {
  padding: 24px 24px 24px 4px;
}
.pw-tl-row--t2 .pw-tl-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.pw-tl-row--t2 .pw-tl-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 6px;
}
.pw-tl-row--t2 .pw-tl-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}
.pw-tl-row--t2 .pw-tl-badge {
  padding: 24px 24px;
  border-left: 1px solid var(--border-dim);
  min-width: 120px;
  text-align: center;
}
.pw-tl-row--t2 .pw-tl-badge .badge-scale {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-dim);
  padding: 6px 12px;
  display: inline-block;
  border-radius: 2px;
}

/* ---- Tier 3: Supporting works ---- */
.pw-tl-row--t3 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--border-dim);
  padding: 20px 28px;
  max-width: 540px;
  border-radius: 3px;
}
.pw-tl-row--t3:nth-child(odd) {
  margin-left: 160px;
}
.pw-tl-row--t3 .pw-tl-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 5px;
}
.pw-tl-row--t3 h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 3px;
}
.pw-tl-row--t3 p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.pw-tl-row--t3 .pw-tl-arrow {
  font-size: 18px;
  color: var(--muted);
  opacity: 0.4;
  flex-shrink: 0;
}


/* ============================================================
   4. CONTRACTORS
   ============================================================ */
.pw-contractors {
  background: var(--navy);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.pw-contractors::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      transparent, transparent 100px,
      rgba(255,255,255,0.012) 100px, rgba(255,255,255,0.012) 101px);
  pointer-events: none;
}
.pw-contractors::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(0,162,79,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.pw-contractors-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pw-contractors-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.pw-contractors-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
}
.pw-contractors-head h2 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-light);
  text-transform: none;
}

.pw-contractors-head p {
  font-size: 15px;
  color: rgba(255,255,255,0.50);
  line-height: 1.88;
}

.pw-contractor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
}
.pw-contractor-cell {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  transition: background 0.25s;
}
.pw-contractor-cell:last-child { border-right: none; }
.pw-contractor-cell:hover { background: rgba(255,255,255,0.055); }

.pw-contractor-cell strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}
.pw-contractor-cell span {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
}


/* ============================================================
   5. EXIT CTA — SIGNATURE MOMENT
   ============================================================ */
.pw-exit {
  position: relative;
  background: #04060c;
  padding: 140px 56px;
  text-align: center;
  overflow: hidden;
}

.pw-exit::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,162,79,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 110%, rgba(247,148,29,0.07) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated border frame */
.pw-exit-frame {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(0,162,79,0.12);
  pointer-events: none;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pw-exit.tl-visible .pw-exit-frame {
  opacity: 1;
  transform: scale(1);
}

.pw-exit-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.pw-exit-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 32px;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-exit.tl-visible .pw-exit-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.pw-exit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 7.5vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pw-exit-title em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-light);
  text-transform: none;
  letter-spacing: -0.03em;
}
.pw-exit.tl-visible .pw-exit-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.pw-exit-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-exit.tl-visible .pw-exit-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}

.pw-exit-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pw-exit.tl-visible .pw-exit-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

.pw-exit-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
  transition: border-color 0.22s, color 0.22s;
}
.pw-exit-phone:hover {
  border-color: rgba(255,255,255,0.36);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pw-feat-content {
    padding: 44px 48px;
  }
  .pw-contractor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pw-contractor-cell:nth-child(3) { border-right: none; }
  .pw-contractor-cell:nth-child(4),
  .pw-contractor-cell:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

@media (max-width: 900px) {
  /* Featured — stack vertically on mobile */
  .pw-featured-trap {
    height: auto;
  }
  .pw-featured {
    position: relative;
    top: auto;
    height: auto;
  }
  .pw-feat-proj {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: 1fr;
    display: block;
  }
  .pw-feat-proj + .pw-feat-proj {
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .pw-feat-visual {
    height: 42vh;
    min-height: 260px;
  }
  .pw-feat-visual::after {
    background: linear-gradient(180deg, transparent 40%, rgba(4,6,12,0.9) 100%);
  }
  .pw-feat-visual-num { font-size: 160px; }
  .pw-feat-content {
    padding: 36px 28px;
  }
  .pw-feat-tier, .pw-feat-title, .pw-feat-location,
  .pw-feat-rule, .pw-feat-desc, .pw-feat-tags, .pw-feat-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pw-feat-rule {
    width: 100% !important;
  }
  .pw-feat-accent-line {
    height: 100% !important;
  }
  .pw-feat-nav { display: none; }
  .pw-feat-counter { display: none; }

  /* Timeline */
  .pw-timeline { padding: 80px 0 64px; }
  .pw-timeline::before { display: none; }
  .pw-tl-head {
    grid-template-columns: 1fr;
    padding: 0 28px;
    margin-bottom: 48px;
    gap: 20px;
  }
  .pw-tl-rows { padding: 0 28px; gap: 24px; }

  .pw-tl-row--t1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .pw-tl-row--t1 .pw-tl-index { display: none; }
  .pw-tl-row--t1 .pw-tl-body { padding: 28px 24px 20px; }
  .pw-tl-row--t1 .pw-tl-badge {
    padding: 16px 24px 24px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: left;
  }
  .pw-tl-row--t1 .pw-tl-badge .badge-tags {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pw-tl-row--t2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .pw-tl-row--t2:nth-child(even) { margin-left: 0; }
  .pw-tl-row--t2 .pw-tl-index { display: none; }
  .pw-tl-row--t2 .pw-tl-body { padding: 24px; }
  .pw-tl-row--t2 .pw-tl-badge {
    padding: 16px 24px 20px;
    border-left: none;
    border-top: 1px solid var(--border-dim);
    text-align: left;
  }

  .pw-tl-row--t3 { max-width: 100%; }
  .pw-tl-row--t3:nth-child(odd) { margin-left: 0; }

  .pw-contractors { padding: 56px 28px; }
  .pw-contractors-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }
  .pw-contractor-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-contractor-cell:nth-child(2n) { border-right: none; }
  .pw-contractor-cell:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .pw-exit { padding: 96px 28px; }
  .pw-exit-frame { inset: 16px; }

  /* Hook */
  .pw-hook-inner { padding: 0 24px; }
}

@media (max-width: 580px) {
  .pw-hook-inner { padding: 0 20px; }
  .pw-contractor-grid { grid-template-columns: 1fr; }
  .pw-contractor-cell { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .pw-contractor-cell:first-child { border-top: none; }
}
