.project-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 118px 0 54px;
  overflow: hidden;
  background: var(--green-950);
}
.project-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.project-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.project-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(64,171,164,.18), transparent 24rem),
    linear-gradient(100deg, rgba(1,43,41,1) 0%, rgba(1,43,41,.9) 48%, rgba(1,43,41,.98) 100%);
}
.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 46px;
  align-items: center;
}
.app-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.app-icon-xl {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(253,230,196,.36);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.app-icon-xl img { width: 100%; height: 100%; object-fit: cover; }
.project-copy h1 {
  font-size: clamp(54px, 9vw, 104px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 880;
}
.project-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.62;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.project-phone {
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 9 / 19.4;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
  transform: rotate(4deg);
}
.project-phone img { width: 100%; height: 100%; object-fit: cover; }

.overview-grid,
.media-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 30px;
  align-items: center;
}
.overview-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.meta-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.meta-panel div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.065);
}
.meta-panel span {
  color: var(--cream-200);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.meta-panel strong { font-size: 15px; line-height: 1.45; }

.media-section { padding-top: 12px; }
.video-card {
  justify-self: center;
  width: min(100%, 275px);
  aspect-ratio: 9 / 19;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: #020807;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.media-copy h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.03;
  letter-spacing: -.065em;
}
.media-copy p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.shot-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.shot-strip::-webkit-scrollbar { height: 5px; }
.shot-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.shot {
  flex: 0 0 142px;
  aspect-ratio: 9 / 19.4;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease;
}
.shot:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.shot img { width: 100%; height: 100%; object-fit: cover; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  min-height: 195px;
  padding: 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}
.feature-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--cream-200);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}
.feature-card h3 { font-size: 18px; line-height: 1.15; letter-spacing: -.025em; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.status-card {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(253,230,196,.13), rgba(64,171,164,.09));
  box-shadow: var(--shadow);
}
.status-card h2 {
  max-width: 760px;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.status-card p { max-width: 680px; margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; }

@media (max-width: 920px) {
  .project-hero-grid,
  .overview-grid,
  .media-grid,
  .status-card { grid-template-columns: 1fr; }
  .project-phone { width: min(82%, 300px); transform: rotate(2deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .project-hero { min-height: auto; padding-top: 116px; }
  .project-copy h1 { font-size: 56px; }
  .app-heading { flex-wrap: wrap; }
  .project-phone { width: min(90%, 260px); }
  .feature-grid { grid-template-columns: 1fr; }
  .shot { flex-basis: 145px; border-radius: 20px; }
}
