/* ═══════════════════════════════════════════════════════════
   DRISHYA ON INTERCEPTOR — Product Description page
   ─────────────────────────────────────────────────────────
   Rides on the shared brand system (Manrope, #43AF43, pill
   buttons, --content-ease, the reveal + counter scripts) and
   reuses the Angad product primitives (.ag-stats / .ag-approach /
   .ag-vector / .ag-mission / .ag-closing) plus the About-page
   shells (.ab-intro / .ab-do / .ab-card / [data-au-reveal]).
   Only genuinely new pieces live here, prefixed `dr-`.
════════════════════════════════════════════════════════════ */

/* ── Hero: second line of the product name sits under the big word ── */
.dr-brand-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.44em;          /* smaller than "Drishya" so the name leads */
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 02 — INTRO  (shared .ab-intro shell)
   The interceptor render is a wide transparent PNG, so it is
   capped rather than filling its column, and it centres under the
   copy once the grid stacks. Side gutters are left to the shared
   .ab-intro shell so they match the rest of the page.
════════════════════════════════════════════════════════════ */
.ab-intro-media picture { display: block; }
.ab-intro .ag-intro-render {
  width: 100%;
  max-width: 500px;   /* matches the previous fixed 500px on desktop */
}

@media (max-width: 860px) {
  .ab-intro-media {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  .ab-intro .ag-intro-render {
    filter: drop-shadow(0 24px 38px rgba(16, 44, 28, 0.24));
  }
}

@media (max-width: 600px) {
  /* Side gutters stay on the shared rhythm — 24px section padding plus the
     32px inner inset, exactly like .ag-section-pad + .ag-inner — so the
     intro copy lines up with every other section on the page. */
  .ab-intro-inner { gap: 30px; }
  .ag-tagline { margin-top: 20px; }
}

@media (max-width: 420px) {
  .ab-intro-glow { inset: 16% 0 0 0; filter: blur(42px); }
  .ag-tagline { padding: 9px 15px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   FULLY AUTONOMOUS OPERATION — Detect → Verify → Capture → Process
   A four-step flow strip. Genuinely new; nothing shared matches it.
════════════════════════════════════════════════════════════ */
.dr-flow-section {
  background: #ffffff;
}
.dr-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: clamp(40px, 6vh, 60px) 0 clamp(40px, 5vh, 56px);
}
.dr-flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid rgba(67, 175, 67, 0.14);
  border-radius: 18px;
  box-shadow:
    0 18px 44px -30px rgba(16, 44, 28, 0.24),
    0 2px 6px rgba(16, 44, 28, 0.04);
  transition:
    transform 0.45s var(--content-ease),
    box-shadow 0.5s var(--content-ease),
    border-color 0.35s ease;
}
.dr-flow-step:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 175, 67, 0.42);
  box-shadow:
    0 34px 64px -28px rgba(16, 44, 28, 0.3),
    0 0 46px -16px rgba(67, 175, 67, 0.22);
}
/* Connector arrow sitting in the grid gap (desktop only) */
.dr-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(67, 175, 67, 0.55);
  border-right: 2px solid rgba(67, 175, 67, 0.55);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.dr-flow-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: #43af43;
  background: linear-gradient(135deg, rgba(67, 175, 67, 0.16), rgba(67, 175, 67, 0.05));
  border: 1px solid rgba(67, 175, 67, 0.22);
}
.dr-flow-ic svg { width: 24px; height: 24px; }
.dr-flow-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #43af43;
}
.dr-flow-label {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1b1e1b;
}
.dr-flow-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4b5563;
}

@media (max-width: 900px) {
  .dr-flow { grid-template-columns: 1fr 1fr; gap: 22px; }
  .dr-flow-step:not(:last-child)::after { display: none; }
}
@media (max-width: 520px) {
  .dr-flow { grid-template-columns: 1fr; }
}
