/* ===========================================================
   Triveni Power - The TPTL Advantage
   Full-bleed background image, LHS headline + body copy.
   =========================================================== */

.edge {
  position: relative;
  background: #0A0809;
  color: #FFFFFF;
  height: 662px;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Full-bleed background image ─────────────────────────── */
.edge__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.edge__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.edge__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Directional scrim - dark left, fades right ──────────── */
.edge__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.65) 40%,
      rgba(5, 5, 5, 0.20) 68%,
      rgba(5, 5, 5, 0.00) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.28) 0%,
      transparent 18%,
      transparent 80%,
      rgba(5, 5, 5, 0.28) 100%
    );
}

/* =========================================================
   INNER - container-aligned, LHS content
   ========================================================= */
.edge__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── LHS content block ───────────────────────────────────── */
.edge__lhs {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 28px);
}

/* ── Headline ────────────────────────────────────────────── */
.edge__title {
  font-family: var(--font-display);
  font-size: var(--fs-l);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #FFFFFF;
  margin: 0;
}
.edge__title em {
  font-style: normal;
  background: linear-gradient(90deg, #F7A25C 0%, var(--accent) 60%, #C56614 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Body copy ───────────────────────────────────────────── */
.edge__body {
  font-family: var(--font-display);
  font-size: var(--fs-m);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  max-width: 52ch;
}

/* =========================================================
   MOBILE (≤ 767 px)
   ========================================================= */
@media (max-width: 767px) {
  .edge {
    height: 100svh;
    padding: 0;
    align-items: flex-start;
  }
  .edge__inner {
    padding: var(--s-7) var(--s-3) var(--s-5);
  }
  .edge__lhs { max-width: 100%; }
  .edge__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,0.82) 0%,
        rgba(5,5,5,0.50) 35%,
        transparent 65%,
        rgba(5,5,5,0.20) 100%
      );
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .edge__bg img { transition: none !important; }
}
