.hero {
  position: relative;
  padding: clamp(42px, 6vw, 72px) 0 clamp(26px, 4vw, 42px);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.hero-copy h1 {
  margin: 0;
  margin-top: 28px;
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  line-height: 0.92;
}

.hero-copy p {
  max-width: 58ch;
  margin-top: 22px;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--positive);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.hero-proof article,
.benefit-card,
.workflow-step,
.privacy-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--hero-panel);
  box-shadow: var(--shadow-soft);
}

.hero-proof strong,
.benefit-card h3,
.workflow-step h3,
.privacy-card h3 {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: start;
  perspective: 1200px;
}

.hero-media img {
  --hero-tilt-y: -18deg;
  --hero-tilt-x: 1deg;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 28px;
  filter: drop-shadow(0 8px 10px rgba(11, 13, 17, 0.18));
  transform: rotateY(var(--hero-tilt-y)) rotateX(var(--hero-tilt-x));
  transform-origin: center;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(6px);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-orb.one {
  top: 96px;
  right: 14%;
  width: 280px;
  height: 280px;
  background: var(--hero-blob-1);
}

.hero-orb.two {
  left: -60px;
  top: 360px;
  width: 240px;
  height: 240px;
  background: var(--hero-blob-2);
  animation-duration: 18s;
}

.hero-orb.three {
  right: -40px;
  top: 520px;
  width: 180px;
  height: 180px;
  background: var(--hero-blob-3);
  animation-duration: 16s;
}

.benefits-grid,
.workflow-grid,
.shots-grid {
  display: grid;
  gap: 16px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(75, 91, 255, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.shots-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shot-card {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shot-card:nth-child(1) { background: linear-gradient(135deg, #4B5BFF, #6A7BFF); }
.shot-card:nth-child(2) { background: linear-gradient(135deg, #14B8A6, #10B981); }
.shot-card:nth-child(3) { background: linear-gradient(135deg, #FC8403, #F59E0B); }
.shot-card:nth-child(4) { background: linear-gradient(135deg, #0B0D11, #F3F4F6); }

.shot-label {
  padding: 28px 20px 18px;
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
}

.shot-card img {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(11, 13, 17, 0.22);
  display: block;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.privacy-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--text-secondary);
}

.cta-panel {
  padding: clamp(26px, 4vw, 38px);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.cta-panel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.05);
  }
}

@media (max-width: 1080px) {
  .privacy-grid,
  .cta-panel-row,
  .benefits-grid,
  .workflow-grid,
  .shots-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 820px) {
  .hero-grid,
  .privacy-grid,
  .benefits-grid,
  .workflow-grid,
  .cta-panel-row {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    --hero-tilt-y: -3deg;
    --hero-tilt-x: 0.8deg;
    max-width: 480px;
    margin: 0 auto;
  }

  .shots-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .shots-grid::-webkit-scrollbar {
    height: 8px;
  }

  .shots-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 999px;
  }

  .shot-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 26px 0 18px;
  }

  .hero-copy h1 {
    max-width: none;
    margin-top: 22px;
    font-size: clamp(2.8rem, 16vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    transition: none;
  }
}

