.rush-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 118px 0 54px;
  overflow: hidden;
  background: var(--green-950);
}
.rush-bg { position: absolute; inset: 0; z-index: -2; }
.rush-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.rush-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(1,43,41,1), rgba(1,43,41,.9) 52%, rgba(1,43,41,.98));
}
.rush-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}
.rush-copy h1 {
  margin-top: 20px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 880;
}
.rush-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}
.rush-preview {
  width: min(100%, 260px);
  justify-self: center;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  aspect-ratio: 9 / 16;
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
  transform: rotate(3deg);
}
.rush-preview img { width: 100%; height: 100%; object-fit: cover; }

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}
.story-card,
.info-card {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}
.story-card { padding: clamp(28px, 5vw, 46px); }
.story-card h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.story-card p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.story-list { display: grid; gap: 12px; }
.info-card { padding: 20px; }
.info-card strong { display: block; color: var(--cream-200); font-size: 16px; margin-bottom: 5px; }
.info-card span { color: var(--muted); 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 150px;
  aspect-ratio: 9 / 16;
  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; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  gap: 16px;
  justify-content: center;
}
.video-card {
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #020807;
}
.video-card span {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 920px) {
  .rush-hero-grid,
  .story-grid { grid-template-columns: 1fr; }
  .rush-preview { width: min(72%, 230px); justify-self: center; }
  .video-grid { grid-template-columns: 1fr; max-width: 390px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .rush-hero { min-height: auto; padding-top: 116px; }
  .rush-copy h1 { font-size: 46px; }
  .shot { flex-basis: 150px; border-radius: 20px; }
}
