/* HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: visible;
  background: var(--black);
}

.hero-wrapper {
  position: absolute;
  left: 50%;
  top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 94vw;
  max-width: 1600px;
  will-change: transform;
}

.hero-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 55vh;
  max-width: calc(55vh * 16 / 9);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 18%, transparent 78%, rgba(0,0,0,0.80) 100%),
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 12%, transparent 88%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  width: 100%;
  text-align: center;
  padding-top: 52px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.0vw, 68px);
  line-height: 1.20;
  letter-spacing: -0.030em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-headline span,
.hero-sub span {
  display: inline;
  opacity: 0;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.65;
  letter-spacing: 0.008em;
  margin-bottom: 46px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.scroll-top-hint {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
}

.scroll-top-hint span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-top-hint-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  pointer-events: none;
}

.scroll-hint span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-hint-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}

/* COMPARISON GRID */

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 48px;
}

.comparison-header {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 20px;
}

.comparison-header--old {
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.90);
}

.comparison-header--new {
  border-bottom: 2px solid var(--cyan);
  color: var(--cyan);
}

.comparison-row {
  display: contents;
}

.comparison-cell {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.comparison-cell--new {
  color: var(--green);
}

/* SERVICES TEASER */

.services-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-hook {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 24px;
}

/* STEPS PREVIEW */

.steps-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
  line-height: 1.6;
}

/* PROOF TEASER */

.proof-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.proof-card-lane {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 12px;
}

.proof-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  flex: 1;
}

.proof-card-outcome {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
}

/* CTA SECTION */

.cta-section {
  text-align: center;
  padding: 160px 48px;
}

/* MOBILE */

@media (max-width: 768px) {
  .scroll-top-hint {
    display: none;
  }

  .hero {
    height: auto;
    overflow: visible;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero-wrapper {
    position: relative;
    top: auto !important;
    width: 92vw;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .hero-headline span,
  .hero-sub span {
    opacity: 1 !important;
  }

  .hero-sub,
  .hero-ctas {
    opacity: 1 !important;
  }

  .hero-ctas {
    flex-direction: column;
    transform: none !important;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-teaser {
    grid-template-columns: 1fr;
  }

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

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

  .cta-section {
    padding: 100px 24px;
  }
}

@media (max-width: 480px) {
  .steps-preview {
    grid-template-columns: 1fr;
  }
}

/* ---- Homepage section z-index (above bgCanvas) ---- */
.section-problem,
.section-difference,
.section-services,
.section-process,
.section-proof,
.section-cta {
  position: relative;
  z-index: 1;
}
