/* ==========================================================================
   DIDC Hero V3 — Reference-matched (1672 x 836, no header)
   Built:      2026-08-19 (full rewrite from didc-hero-pixel-match-v2.html)
   Reference:  didc-hero-pixel-match-v2.html
   Canvas:     1672 × 836 (was 1672 × 941, removed 105px header from spec)
   Brand:      DIDC red #ED1440 / navy #0A1F44 / slate #5A6072 / paper #FAF7F2
   Type:       Sora 800/700 (display) + Manrope 700/400 (body) + JetBrains Mono
   Mode:       Persuade (corporate marketing)
   Scope:      All rules under .didc-hero-v3 — no global pollution.
   ========================================================================== */

.didc-hero-v3 {
  /* Local design tokens */
  --h-red:        #ED1440;
  --h-red-deep:   #C00A2A;
  --h-red-pale:   #FF4D6D;
  --h-ink:        #1A1A1A;
  --h-slate:      #6B6B6B;
  --h-mute:       #8A8F9F;
  --h-paper:      #FAF7F2;
  --h-paper-2:    #F0EBE2;
  --h-paper-3:    #E5DFD3;
  --h-line:       #E5DFD3;
  --h-green:      #4D8B31;
  --h-amber:      #C8861D;
  --h-ff-d:       'Sora', system-ui, sans-serif;
  --h-ff-b:       'Manrope', system-ui, sans-serif;
  --h-ff-m:       'JetBrains Mono', ui-monospace, monospace;
  --h-ease:       cubic-bezier(.22, .85, .3, 1);

  position: relative;
  display: block;
  width: 100%;
  background: #ffffff;
  color: var(--h-ink);
  font-family: var(--h-ff-b);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

/* Top red accent (1px) */
.didc-hero-v3::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--h-red);
  pointer-events: none;
}

/* ============================================================
   STAGE — 1672 × 836 (per reference; no header in our case)
   ============================================================ */
.didc-hero-v3 .stage {
  width: 100%;
  max-width: 1672px;
  min-height: 836px;
  margin: 0 auto;
  position: relative;
  background:
    /* Soft red glow top-right */
    radial-gradient(ellipse 55% 65% at 90% 8%, rgba(237, 20, 64, .14), transparent 65%),
    /* Soft red glow bottom-left */
    radial-gradient(ellipse 45% 55% at 6% 95%, rgba(237, 20, 64, .10), transparent 60%),
    /* Subtle red wash on the right */
    linear-gradient(90deg, #ffffff 0%, #ffffff 60%, #fff5f7 100%);
  overflow: hidden;
}

/* Subtle dot pattern (top-left + bottom-right) */
.didc-hero-v3 .stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 7% 72%, rgba(237, 20, 64, .12) 0 2.5px, transparent 4px),
    radial-gradient(circle at 92% 88%, rgba(237, 20, 64, .10) 0 2px, transparent 3.5px);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HERO — 1672 × 836
   ============================================================ */
.didc-hero-v3 .hero-didc {
  position: relative;
  height: 836px;
  z-index: 1;
}

/* Decorative SVG network (red-tinted, low opacity) */
.didc-hero-v3 .network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
.didc-hero-v3 .network path {
  fill: none;
  stroke: rgba(237, 20, 64, .18);
  stroke-width: 1;
}
.didc-hero-v3 .network circle { fill: rgba(237, 20, 64, .45); }
.didc-hero-v3 .network .red { fill: var(--h-red); }
.didc-hero-v3 .network .red-ring { fill: none; stroke: var(--h-red); stroke-width: 1.4; }

/* ============================================================
   LEFT COLUMN — Copy (53px left, 64px top, 690px wide)
   ============================================================ */
.didc-hero-v3 .left {
  position: absolute;
  left: 53px;
  top: 64px;
  width: 690px;
  z-index: 2;
}

/* Eyebrow — pill (per reference), mono, red text + red border */
.didc-hero-v3 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(237, 20, 64, .35);
  border-radius: 20px;
  background: #ffffff;
  color: var(--h-ink);
  font-family: var(--h-ff-m);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .02), 0 4px 12px -2px rgba(237, 20, 64, .10);
  margin-bottom: 26px;
  position: relative;
}

/* Pulsing red dot at the start of the eyebrow — signals "live, active" */
.didc-hero-v3 .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--h-red);
  box-shadow: 0 0 0 0 rgba(237, 20, 64, .55);
  animation: didc-eyebrow-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes didc-eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 20, 64, .55); }
  50%      { box-shadow: 0 0 0 5px rgba(237, 20, 64, 0); }
}
.didc-hero-v3 .eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--h-red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(237, 20, 64, .15);
  animation: didc-pulse 2.4s cubic-bezier(.22, .85, .3, 1) infinite;
}
.didc-hero-v3 .eyebrow .slashes { color: var(--h-red); opacity: .55; font-weight: 400; }
.didc-hero-v3 .eyebrow .accent { color: var(--h-red); font-weight: 800; margin-right: 2px; }
@keyframes didc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 20, 64, .55); }
  70%      { box-shadow: 0 0 0 8px rgba(237, 20, 64, 0);  }
}

/* H1 — 70px, 680px wide, Sora 800 */
.didc-hero-v3 h1 {
  margin: 0 0 20px 0;
  width: 720px;
  font-family: var(--h-ff-d);
  font-size: 72px;
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--h-ink);
}

/* Per-line slide-in animation — staggered reveal */
.didc-hero-v3 h1 .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: didc-line-in 0.85s cubic-bezier(.22, .85, .3, 1) forwards;
}
.didc-hero-v3 h1 .line-1 { animation-delay: 0.05s; }
.didc-hero-v3 h1 .line-2 { animation-delay: 0.18s; }
.didc-hero-v3 h1 .line-3 { animation-delay: 0.31s; }
.didc-hero-v3 h1 .line-4 { animation-delay: 0.44s; }
.didc-hero-v3 h1 .line.red { color: var(--h-red); }

@keyframes didc-line-in {
  to { opacity: 1; transform: translateY(0); }
}
.didc-hero-v3 h1 .red { color: var(--h-red); }
.didc-hero-v3 h1 .red-underline {
  position: relative;
  display: inline-block;
  color: var(--h-red);
}
/* Animated highlight bar that sweeps in from left to right after the line lands */
.didc-hero-v3 h1 .red-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 6px;
  background: rgba(237, 20, 64, .18);
  border-radius: 3px;
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: didc-underline-sweep 0.7s cubic-bezier(.22, .85, .3, 1) forwards;
  animation-delay: 0.95s;
}
@keyframes didc-underline-sweep {
  to { transform: scaleX(1); }
}
.didc-hero-v3 h1 .red-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 22%;
  height: 3px;
  bottom: -6px;
  background: var(--h-red);
  border-radius: 999px;
  transform: rotate(-1.8deg);
}

/* Lead — 17px, 635px wide */
.didc-hero-v3 .lead {
  width: 680px;
  margin: 0 0 18px 0;
  color: var(--h-slate);
  font-family: var(--h-ff-b);
  font-size: 17px;
  line-height: 1.55;
  max-width: 60ch;
  opacity: 0;
  transform: translateY(16px);
  animation: didc-fade-rise 0.7s cubic-bezier(.22, .85, .3, 1) forwards;
  animation-delay: 0.6s;
}
.didc-hero-v3 .lead b { color: var(--h-ink); font-weight: 700; }

@keyframes didc-fade-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Product chips under the lead — small pills, mono font */
.didc-hero-v3 .lead-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px 0;
  opacity: 0;
  animation: didc-fade-rise 0.6s ease forwards;
  animation-delay: 0.85s;
}
.didc-hero-v3 .lead-chip {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  font-family: var(--h-ff-m);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--h-ink);
  background: rgba(237, 20, 64, .04);
  border: 1px solid rgba(237, 20, 64, .18);
  border-radius: 13px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  cursor: default;
  /* Each chip appears with a small stagger */
  opacity: 0;
  transform: translateY(8px);
  animation: didc-chip-in 0.45s cubic-bezier(.22, .85, .3, 1) forwards;
}
.didc-hero-v3 .lead-chip:nth-child(1) { animation-delay: 1.00s; }
.didc-hero-v3 .lead-chip:nth-child(2) { animation-delay: 1.08s; }
.didc-hero-v3 .lead-chip:nth-child(3) { animation-delay: 1.16s; }
.didc-hero-v3 .lead-chip:nth-child(4) { animation-delay: 1.24s; }
.didc-hero-v3 .lead-chip:nth-child(5) { animation-delay: 1.32s; }
.didc-hero-v3 .lead-chip:nth-child(6) { animation-delay: 1.40s; }

@keyframes didc-chip-in {
  to { opacity: 1; transform: translateY(0); }
}
.didc-hero-v3 .lead-chip:hover {
  background: rgba(237, 20, 64, .10);
  border-color: rgba(237, 20, 64, .35);
  color: var(--h-red);
  transform: translateY(-1px);
}
.didc-hero-v3 .lead b { color: var(--h-ink); font-weight: 600; }

/* Actions — CTAs (pill buttons, 46px tall) */
/* ============================================================
   BUTTONS — symmetric .btn with .btn-label + .btn-icon children
   Same structure for primary and secondary, icons in real SVGs
   ============================================================ */

.didc-hero-v3 .actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  margin-top: 26px;
}

/* =================================================================
   MINI STATS STRIP — credibility row between buttons & benefits
   ================================================================= */
.didc-hero-v3 .hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 26, 26, .08);
  width: 580px;
  max-width: 100%;
}
.didc-hero-v3 .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.didc-hero-v3 .hero-stat strong {
  display: flex;
  align-items: baseline;
  gap: 1px;
  color: var(--h-ink);
  font-family: var(--h-ff-d);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.didc-hero-v3 .hero-stat strong small {
  font-family: var(--h-ff-m);
  font-size: 11px;
  font-weight: 700;
  color: var(--h-red);
  letter-spacing: 0;
  text-transform: lowercase;
}
.didc-hero-v3 .hero-stat span {
  color: var(--h-slate);
  font-family: var(--h-ff-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.3;
}
.didc-hero-v3 .hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(26, 26, 26, .10);
  flex-shrink: 0;
}

.didc-hero-v3 .btn,
.didc-hero-v3 .didc-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  font-family: 'Manrope', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-align: center !important;
  color: inherit !important;
  cursor: pointer !important;
  border: 0 !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  position: relative;
  box-sizing: border-box;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

/* The icon slot — fixed 18×18 box */
.didc-hero-v3 .btn-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  line-height: 1 !important;
}
.didc-hero-v3 .btn-icon svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  stroke-width: 2.4 !important;
  fill: none !important;
  stroke: currentColor !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* The label slot — natural text width */
.didc-hero-v3 .btn-label {
  display: inline-block !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  color: inherit !important;       /* inherit from .btn (so .btn-secondary:hover makes it red) */
}

/* Primary button — red flat */
.didc-hero-v3 .btn-secondary {
  background: #FAF7F2 !important;          /* paper, not white */
  background-image: none !important;
  color: #1A1A1A !important;
  border: 1px solid #E5DFD3 !important;    /* soft tan, not black */
  box-shadow:
    0 1px 0 0 rgba(0, 0, 0, .04),
    0 2px 6px -2px rgba(26, 26, 26, .06) !important;
  position: relative;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .15s ease,
    box-shadow .2s ease;
}

.didc-hero-v3 .btn-secondary:hover {
  background: #FFF1F4 !important;          /* red-50 wash */
  color: #ED1440 !important;                /* bright brand red text */
  border-color: #ED1440 !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(192, 10, 42, .20),
    0 8px 20px -4px rgba(237, 20, 64, .25) !important;
}

.didc-hero-v3 .btn-secondary:hover .btn-label {
  color: #ED1440 !important;
}

/* Primary button hover — keep text red/white but make sure it stays high contrast */
.didc-hero-v3 .btn-primary:hover .btn-label {
  color: #ffffff !important;
}

.didc-hero-v3 .btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .02);
}

/* Play circle — a red filled disc with a white triangle inside.
   Replaces the generic outline triangle and gives the secondary
   button a clear "video" affordance. */
.didc-hero-v3 .btn-play {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  border-radius: 50% !important;
  background: var(--h-red) !important;
  flex-shrink: 0 !important;
  position: relative;
  box-shadow: 0 1px 0 0 rgba(192, 10, 42, .35), 0 2px 4px -1px rgba(237, 20, 64, .25);
  transition: transform .15s ease, background-color .15s ease;
}

/* Duration tag (mono) — small clock label that sits after the label. */
.didc-hero-v3 .btn-meta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 22px !important;
  padding: 0 8px !important;
  margin-left: 2px !important;
  font-family: var(--h-ff-m) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  color: #6B6B6B !important;
  background: #F0EBE2 !important;
  border: 1px solid #E5DFD3 !important;
  border-radius: 3px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}

.didc-hero-v3 .btn-secondary:hover .btn-meta {
  color: #C00A2A !important;
  background: #ffffff !important;
  border-color: #ED1440 !important;
}

.didc-hero-v3 .btn-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 2px;
}

.didc-hero-v3 .btn-secondary:hover .btn-play {
  background: var(--h-red) !important;
  transform: scale(1.05);
}

.didc-hero-v3 .btn-secondary:hover .btn-play::before {
  border-color: transparent transparent transparent #ffffff !important;
}

.didc-hero-v3 .btn-primary {
  background: #ED1440 !important;
  color: #ffffff !important;
  border: 1px solid #C00A2A !important;
  background-image: none !important;
  box-shadow:
    0 1px 0 0 rgba(192, 10, 42, .4),
    0 4px 12px -2px rgba(237, 20, 64, .30) !important;
}
.didc-hero-v3 .btn-primary:hover {
  background: #FF2D55 !important;            /* brighter red on hover */
  border-color: #ED1440 !important;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(192, 10, 42, .4),
    0 10px 24px -4px rgba(237, 20, 64, .55) !important;
}
.didc-hero-v3 .btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 0 rgba(192, 10, 42, .4),
    0 2px 6px -2px rgba(237, 20, 64, .30);
}

/* Secondary button — charcoal outline */


/* Responsive — buttons stack on mobile */
/* ============================================================
   BENEFITS — 4 cards, 865 × 118px, bottom: 102
   (sits at bottom-left)
   ============================================================ */
.didc-hero-v3 .benefits {
  position: absolute;
  left: 45px;
  bottom: 102px;
  width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  z-index: 3;
}
.didc-hero-v3 .benefit {
  height: 118px;
  border: 1px solid var(--h-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .02), 0 6px 18px rgba(237, 20, 64, .06);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  padding: 24px 17px 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.didc-hero-v3 .benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(237, 20, 64, .10);
  border-color: var(--h-red);
}
.didc-hero-v3 .benefit .bicon {
  color: var(--h-red);
  display: grid;
  place-items: start center;
  padding-top: 2px;
}
.didc-hero-v3 .benefit .bicon-ai {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ED1440 0%, #C00A2A 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -2px rgba(237, 20, 64, .35);
  padding-top: 0;
}
.didc-hero-v3 .benefit .bicon-ai svg {
  width: 20px;
  height: 20px;
  display: block;
}
.didc-hero-v3 .benefit .bicon svg {
  width: 28px; height: 28px; stroke-width: 1.6;
}
.didc-hero-v3 .benefit .btext {
  display: flex; flex-direction: column; gap: 4px;
}
.didc-hero-v3 .benefit .btext strong {
  font-family: var(--h-ff-b);
  font-size: 13px;
  font-weight: 700;
  color: var(--h-ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.didc-hero-v3 .benefit .btext small {
  font-family: var(--h-ff-b);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--h-slate);
}

/* ============================================================
   VISUAL — right column, 890 × 710, left: 740, top: 42
   (orbit + 6 floats)
   ============================================================ */
.didc-hero-v3 .visual {
  position: absolute;
  left: 740px;
  top: 42px;
  width: 890px;
  height: 710px;
  z-index: 2;
}

/* Orbit — 555 × 555, left: 168 (centered in .visual) */
.didc-hero-v3 .orbit {
  position: absolute;
  left: 168px;
  top: 15px;
  width: 555px;
  height: 555px;
  border-radius: 50%;
}
.didc-hero-v3 .orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 20, 64, .06), transparent 66%);
}
.didc-hero-v3 .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(237, 20, 64, .20);
}

/* Individual ring sizes — concentric orbits centered at 277.5px (555/2) */
.didc-hero-v3 .ring.r1 { width: 555px; height: 555px; left: 0;   top: 0;   border-color: rgba(237, 20, 64, .14); animation: didc-orbit-ccw 80s linear infinite; }
.didc-hero-v3 .ring.r2 { width: 460px; height: 460px; left: 47px;  top: 47px;  border-color: rgba(237, 20, 64, .20); animation: didc-orbit-cw  65s linear infinite; }
.didc-hero-v3 .ring.r3 { width: 365px; height: 365px; left: 95px;  top: 95px;  border-color: rgba(237, 20, 64, .26); animation: didc-orbit-ccw 50s linear infinite; }
.didc-hero-v3 .ring.r4 { width: 270px; height: 270px; left: 142px; top: 142px; border-color: rgba(237, 20, 64, .34); animation: didc-orbit-cw  38s linear infinite; }
.didc-hero-v3 .ring.r5 { width: 200px; height: 200px; left: 178px; top: 178px; border-color: rgba(237, 20, 64, .42); animation: didc-orbit-ccw 28s linear infinite; }

/* Dashed inner ring for extra texture */
.didc-hero-v3 .ring.r3 { border-style: dashed; border-dasharray: 4 6; }
.didc-hero-v3 .ring.r5 { border-style: dashed; border-dasharray: 2 4; }

/* Orbit keyframes — counter-clockwise + clockwise */
@keyframes didc-orbit-ccw {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(-360deg); }
}
@keyframes didc-orbit-cw {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg);  }
}

/* Ring dots — each one travels around its ring */
.didc-hero-v3 .ring-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fb8794;
  box-shadow: 0 0 0 5px rgba(237, 20, 64, .04);
  z-index: 5;
}
.didc-hero-v3 .ring-dot.d1 {
  /* 277.5 - 4.5 = 273; sits on top of orbit r2 (460/2 from center = 230) */
  top: 47px; left: 273px;
  animation: didc-dot-orbit-1 6s linear infinite;
}
.didc-hero-v3 .ring-dot.d2 {
  top: 273px; right: -4.5px;
  animation: didc-dot-orbit-2 7.5s linear infinite;
}
.didc-hero-v3 .ring-dot.d3 {
  bottom: 95px; left: 47px;
  animation: didc-dot-orbit-3 5.5s linear infinite;
}
.didc-hero-v3 .ring-dot.d4 {
  top: 95px; right: 47px;
  animation: didc-dot-orbit-4 8s linear infinite;
}

/* Each dot travels around its assigned ring at 277.5px (555/2) center */
@keyframes didc-dot-orbit-1 {
  from { transform: rotate(0deg)   translateX(230px) rotate(0deg);   }
  to   { transform: rotate(360deg) translateX(230px) rotate(-360deg); }
}
@keyframes didc-dot-orbit-2 {
  from { transform: rotate(0deg)   translateX(182px) rotate(0deg);    }
  to   { transform: rotate(-360deg) translateX(182px) rotate(360deg);  }
}
@keyframes didc-dot-orbit-3 {
  from { transform: rotate(0deg)   translateX(135px) rotate(0deg);    }
  to   { transform: rotate(360deg) translateX(135px) rotate(-360deg);  }
}
@keyframes didc-dot-orbit-4 {
  from { transform: rotate(0deg)   translateX(100px) rotate(0deg);    }
  to   { transform: rotate(-360deg) translateX(100px) rotate(360deg);  }
}
.didc-hero-v3 .r1 { inset: 0; }
.didc-hero-v3 .r2 { inset: 42px; }
.didc-hero-v3 .r3 { inset: 84px; }
.didc-hero-v3 .r4 { inset: 126px; }
.didc-hero-v3 .r5 { inset: 166px; border-color: rgba(237, 20, 64, .35); border-width: 1.5px; }

.didc-hero-v3 .ring-dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fb8794;
  box-shadow: 0 0 0 5px rgba(237, 20, 64, .04);
}
.didc-hero-v3 .d1 { left: 163px; top: 118px; }
.didc-hero-v3 .d2 { right: 123px; top: 95px;  }
.didc-hero-v3 .d3 { right: 57px;  top: 274px; }
.didc-hero-v3 .d4 { left: 187px; bottom: 47px; background: var(--h-amber); box-shadow: 0 0 0 5px rgba(200, 134, 29, .12); }

/* Core — 210 × 210, centered (offset 172.5) */
.didc-hero-v3 .core {
  position: absolute;
  left: 173px;
  top: 173px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #fff5f7 0%, #ffffff 65%),
    linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
  border: 1.5px solid #f0d3d8;
  box-shadow:
    0 20px 55px rgba(237, 20, 64, .12),
    0 0 0 22px rgba(237, 20, 64, .02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: didc-core-breath 3.6s ease-in-out infinite;
  z-index: 6;
}

/* Core breathing — gentle scale 1 → 1.02 → 1, simulating "alive" platform */
@keyframes didc-core-breath {
  0%, 100% { transform: scale(1);    box-shadow: 0 20px 55px rgba(237, 20, 64, .12), 0 0 0 22px rgba(237, 20, 64, .02); }
  50%      { transform: scale(1.025); box-shadow: 0 22px 60px rgba(237, 20, 64, .18), 0 0 0 30px rgba(237, 20, 64, .01); }
}
.didc-hero-v3 .core strong {
  font-family: var(--h-ff-d);
  font-size: 36px;
  font-weight: 800;
  color: var(--h-red);
  line-height: 1;
  letter-spacing: -0.04em;
}
.didc-hero-v3 .core span {
  font-family: var(--h-ff-m);
  font-size: 11px;
  font-weight: 800;
  color: var(--h-ink);
  margin-top: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.didc-hero-v3 .core .core-dot {
  width: 6px; height: 6px;
  background: var(--h-green);
  border-radius: 50%;
  margin-top: 12px;
  box-shadow: 0 0 0 3px rgba(77, 139, 49, .12);
  animation: didc-pulse-green 2s ease-in-out infinite;
}

/* Live data signals — concentric expanding rings from the core */
.didc-hero-v3 .signal {
  position: absolute;
  top: 50%; left: 50%;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 20, 64, .6);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.didc-hero-v3 .signal.s1 { animation: didc-signal 3.6s ease-out infinite; }
.didc-hero-v3 .signal.s2 { animation: didc-signal 3.6s ease-out infinite 1.2s; }
.didc-hero-v3 .signal.s3 { animation: didc-signal 3.6s ease-out infinite 2.4s; }

@keyframes didc-signal {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0;    }
  10%  { transform: translate(-50%, -50%) scale(0.5); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0;    }
}

@keyframes didc-pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77, 139, 49, .55); }
  70%      { box-shadow: 0 0 0 6px rgba(77, 139, 49, 0);  }
}

/* Satellite nodes (4 directions) — real DIDC product icons */
.didc-hero-v3 .node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--h-ink);
  font-family: var(--h-ff-m);
  font-size: 9.5px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.didc-hero-v3 .node .circle {
  width: 53px; height: 53px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #ffffff;
  border: 1.5px solid var(--h-red);
  color: var(--h-red);
  box-shadow: 0 6px 16px rgba(237, 20, 64, .15);
}
.didc-hero-v3 .node .circle svg {
  width: 24px; height: 24px; stroke-width: 1.6;
}
.didc-hero-v3 .node.top    { left: 245px;  top: 3px;   flex-direction: column; }
.didc-hero-v3 .node.left   { left: 4px;    top: 240px; }
.didc-hero-v3 .node.right  { right: -2px;  top: 240px; flex-direction: row-reverse; text-align: left; }
.didc-hero-v3 .node.bottom { left: 225px;  bottom: -6px; flex-direction: column-reverse; }

/* ============================================================
   FLOAT CARDS — 6 stats around the orbit
   (165 × 130, with line charts, bars, telemetry)
   ============================================================ */
.didc-hero-v3 .float {
  position: absolute;
  width: 165px;
  min-height: 130px;
  border: 1px solid var(--h-line);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(237, 20, 64, .10);
  padding: 18px 17px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.didc-hero-v3 .float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(237, 20, 64, .14);
}

/* Subtle floating animation on each card — staggered for organic feel */
.didc-hero-v3 .float.f-a { animation: didc-float-y 6.0s ease-in-out infinite; }
.didc-hero-v3 .float.f-b { animation: didc-float-y 7.0s ease-in-out infinite -1.5s; }
.didc-hero-v3 .float.f-c { animation: didc-float-y 5.5s ease-in-out infinite -3.0s; }
.didc-hero-v3 .float.f-d { animation: didc-float-y 6.5s ease-in-out infinite -0.8s; }
.didc-hero-v3 .float.f-e { animation: didc-float-y 7.5s ease-in-out infinite -2.2s; }
.didc-hero-v3 .float.f-f { animation: didc-float-y 6.0s ease-in-out infinite -3.5s; }

@keyframes didc-float-y {
  0%, 100% { transform: translateY(0);    }
  50%      { transform: translateY(-6px); }
}
.didc-hero-v3 .float h5 {
  margin: 0 0 9px;
  font-family: var(--h-ff-m);
  font-size: 9px;
  font-weight: 600;
  color: var(--h-slate);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.didc-hero-v3 .float .big {
  display: block;
  font-family: var(--h-ff-d);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  color: var(--h-ink);
  letter-spacing: -0.025em;
}
.didc-hero-v3 .float .big.red { color: var(--h-red); }
.didc-hero-v3 .float small {
  display: block;
  margin-top: 6px;
  font-family: var(--h-ff-m);
  font-size: 8px;
  color: var(--h-slate);
  letter-spacing: .04em;
}
.didc-hero-v3 .float .positive { color: var(--h-green) !important; font-weight: 700; }

/* Float charts */
.didc-hero-v3 .linechart { height: 42px; margin-top: 10px; }
.didc-hero-v3 .linechart svg { width: 100%; height: 100%; }
.didc-hero-v3 .linechart polyline {
  fill: none; stroke: var(--h-red); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.didc-hero-v3 .bars {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 12px;
}
.didc-hero-v3 .bars span {
  flex: 1;
  background: rgba(237, 20, 64, .25);
  border-radius: 3px 3px 0 0;
}
.didc-hero-v3 .bars span.peak { background: var(--h-red); }
.didc-hero-v3 .avatars { display: flex; margin-top: 12px; }
.didc-hero-v3 .avatars i {
  display: block;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -5px;
  background: linear-gradient(135deg, #E5DFD3, #c8c0b3);
  font-style: normal;
}
.didc-hero-v3 .avatars i:first-child { margin-left: 0; background: linear-gradient(135deg, #ED1440, #C00A2A); }
.didc-hero-v3 .avatars i:nth-child(2) { background: linear-gradient(135deg, #ED1440, #C00A2A); }
.didc-hero-v3 .avatars i:nth-child(3) { background: linear-gradient(135deg, #4D8B31, #2D5A1F); }
.didc-hero-v3 .avatars i:nth-child(4) { background: linear-gradient(135deg, #C8861D, #8A5A0F); }
.didc-hero-v3 .avatars i:nth-child(5) { background: #E5DFD3; }
.didc-hero-v3 .telemetry {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.didc-hero-v3 .telemetry div {
  display: grid;
  grid-template-columns: 49px 1fr 14px;
  gap: 4px;
  align-items: center;
  font-family: var(--h-ff-m);
  font-size: 7px;
}
.didc-hero-v3 .telemetry b { font-size: 7px; color: var(--h-ink); font-weight: 700; }
.didc-hero-v3 .telemetry em { font-style: normal; color: var(--h-green); font-weight: 700; }
.didc-hero-v3 .telemetry span { color: var(--h-mute); }
.didc-hero-v3 .health {
  height: 4px;
  background: #e4ebe5;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 13px;
}
.didc-hero-v3 .health span {
  display: block; width: 100%; height: 100%;
  background: var(--h-green);
}

/* Float positions (around the orbit) */
.didc-hero-v3 .f-a { left: 6px;    top: 24px; }
.didc-hero-v3 .f-b { right: 6px;   top: 24px; }
.didc-hero-v3 .f-c { left: -18px;  top: 219px; }
.didc-hero-v3 .f-d { right: -2px;  top: 218px; width: 218px; }
.didc-hero-v3 .f-e { left: 23px;   bottom: 46px; }
.didc-hero-v3 .f-f { right: 34px;  bottom: 10px; }

/* ============================================================
   TRUST STRIP — 650 × 120, bottom: 79, left: 925
   (sits at bottom-right)
   ============================================================ */
.didc-hero-v3 .trust {
  position: absolute;
  left: 925px;
  bottom: 60px;
  width: 650px;
  height: 145px;
  border: 0;
  border-top: 1px solid rgba(26, 26, 26, .08);   /* hairline divider only */
  background: transparent;                        /* blends with hero gradient */
  z-index: 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Trust count badge (mono chip) */
.didc-hero-v3 .trust-head .trust-count {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-family: var(--h-ff-m);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--h-red);
  background: rgba(237, 20, 64, .08);
  border: 1px solid rgba(237, 20, 64, .18);
  border-radius: 4px;
  letter-spacing: .04em;
}

/* =============================================================
   CLIENT LOGO MARQUEE — continuous scroll of 25+ enterprise logos
   !important is used because .home3 .marquee in home3.css sets
   a dark background — we need to win definitively.
   ============================================================= */
.didc-hero-v3 .marquee {
  flex: 1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-block: 0 !important;
  padding: 0 !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%) !important;
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%) !important;
}
.didc-hero-v3 .marquee__track {
  display: flex !important;
  width: max-content !important;
  animation: didc-marquee-slide 80s linear infinite !important;
  will-change: transform;
}
.didc-hero-v3 .marquee:hover .marquee__track {
  animation-play-state: paused !important;
}
.didc-hero-v3 .marquee__set {
  display: flex !important;
  align-items: center !important;
  gap: 48px !important;
  padding-right: 48px !important;
  flex-shrink: 0 !important;
}
.didc-hero-v3 .marquee__set .client-logo {
  /* Show the actual logo at near-original size (native is 300×180).
     height 64px keeps the 5:3 aspect, max-width 200px accommodates
     longer names like "american-family" and "graphic-packaging". */
  height: 64px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  /* The source PNGs are black-on-white. blend mode "multiply"
     kills the black background so the hero gradient shows through,
     while keeping the white logo text crisp and brand-recognizable. */
  mix-blend-mode: multiply !important;
  filter: grayscale(1) opacity(.75) !important;
  transition: filter .25s ease, transform .25s ease;
}
.didc-hero-v3 .marquee__set .client-logo:hover {
  filter: grayscale(0) opacity(1) !important;
  transform: scale(1.08);
}
@keyframes didc-marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.didc-hero-v3 .trust-head {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h-slate);
  font-family: var(--h-ff-m);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  flex-shrink: 0;
}
.didc-hero-v3 .trust-head b {
  color: var(--h-ink);
  font-weight: 700;
}
.didc-hero-v3 .trust-head b { color: var(--h-ink); font-weight: 800; }
.didc-hero-v3 .trust-head .dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--h-red); border-radius: 50%;
  margin: 0 8px; vertical-align: middle;
}
.didc-hero-v3 .logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  gap: 8px;
}
.didc-hero-v3 .client-logo {
  height: 54px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter .25s ease, transform .25s ease;
}
.didc-hero-v3 .client-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
.didc-hero-v3 .logo-word {
  font-family: var(--h-ff-d);
  font-weight: 800;
  font-size: 16px;
  color: var(--h-ink);
  opacity: .82;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  transition: opacity .15s ease, color .15s ease;
}
.didc-hero-v3 .logo-word:hover { opacity: 1; color: var(--h-red); }
.didc-hero-v3 .logo-word small {
  font-family: var(--h-ff-m);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--h-slate);
}
.didc-hero-v3 .logo-word .icon {
  width: 18px; height: 18px;
  color: var(--h-red);
  display: block;
  margin: 0 auto 4px;
}
.didc-hero-v3 .logo-word .icon svg { width: 100%; height: 100%; stroke-width: 1.6; }

/* ============================================================
   RESPONSIVE — scale down
   ============================================================ */
/* =================================================================
   RESPONSIVE — 3-tier system
   ─ Desktop (≥1280px): absolute positioning, full canvas
   ─ Tablet  (768–1279px): single column, scaled orbit
   ─ Mobile  (≤767px): tight single column, smaller type
   ================================================================= */

/* ─── TABLET (≤1279px) ─── */
@media (max-width: 900px) {
  .didc-hero-v3 .stage {
    width: 100%;
    max-width: 1023px;
    min-height: auto;
    margin: 0;
    overflow: visible;
  }
  .didc-hero-v3 .hero-didc {
    position: relative;
    height: auto;
    padding: 56px 32px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  /* Stack left + visual + benefits + trust in a single flow */
  .didc-hero-v3 .left,
  .didc-hero-v3 .visual,
  .didc-hero-v3 .benefits,
  .didc-hero-v3 .trust {
    position: relative;
    left: auto; top: auto; right: auto; bottom: auto;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .didc-hero-v3 .left { order: 1; }
  .didc-hero-v3 .visual {
    order: 2;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .didc-hero-v3 .benefits { order: 3; }
  .didc-hero-v3 .trust { order: 4; }

  /* Scaled-down orbit */
  .didc-hero-v3 .orbit {
    position: relative;
    left: 0; top: 0;
    margin: 0 auto;
    transform: scale(0.85);
    transform-origin: center center;
  }
  /* Hide the float cards on tablet — too cluttered with orbit */
  .didc-hero-v3 .float { display: none; }
}

/* ─── MOBILE (≤767px) ─── */
@media (max-width: 767px) {
  .didc-hero-v3 .hero-didc {
    padding: 32px 20px 60px;
    gap: 36px;
  }
  .didc-hero-v3 .left,
  .didc-hero-v3 .visual,
  .didc-hero-v3 .benefits,
  .didc-hero-v3 .trust {
    max-width: 100%;
  }

  /* Eyebrow — slightly smaller */
  .didc-hero-v3 .eyebrow {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 32px;
    padding: 7px 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px 7px;
    font-size: 8.5px;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 18px;
  }

  /* H1 — drop to readable mobile size, smaller slide-in */
  .didc-hero-v3 h1 {
    font-size: 36px;
    line-height: 1.05;
    width: 100%;
    letter-spacing: -0.035em;
  }
  /* Reduce animation distance for mobile (less screen real estate) */
  .didc-hero-v3 h1 .line {
    transform: translateY(14px);
    animation-duration: 0.55s;
  }
  /* Tighter stagger on mobile */
  .didc-hero-v3 h1 .line-1 { animation-delay: 0.05s; }
  .didc-hero-v3 h1 .line-2 { animation-delay: 0.15s; }
  .didc-hero-v3 h1 .line-3 { animation-delay: 0.25s; }
  .didc-hero-v3 h1 .line-4 { animation-delay: 0.35s; }

  /* Lead — slightly smaller, max width constrained */
  .didc-hero-v3 .lead {
    font-size: 15px;
    line-height: 1.55;
    width: 100%;
  }

  /* Lead chips — wrap better, smaller */
  .didc-hero-v3 .lead-chips {
    gap: 6px;
  }
  .didc-hero-v3 .lead-chip {
    height: 24px;
    padding: 0 9px;
    font-size: 9.5px;
  }

  /* Visual — much smaller orbit */
  .didc-hero-v3 .visual {
    position: relative;
    height: 380px;
    overflow: hidden;
  }
  .didc-hero-v3 .orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transform-origin: center;
  }

  /* Hero stats — smaller, tighter */
  .didc-hero-v3 .hero-stats {
    gap: 12px;
    padding-top: 18px;
    margin-top: 24px;
    width: 100%;
    flex-wrap: wrap;
  }
  .didc-hero-v3 .hero-stat strong {
    font-size: 22px;
  }
  .didc-hero-v3 .hero-stat span {
    font-size: 10px;
  }
  .didc-hero-v3 .hero-stat-sep {
    height: 24px;
  }

  /* Actions — buttons full width on mobile */
  .didc-hero-v3 .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .didc-hero-v3 .btn {
    width: 100% !important;
    justify-content: center;
  }

  /* Benefits — single column, shorter cards */
  .didc-hero-v3 .benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .didc-hero-v3 .benefit {
    height: auto;
    min-height: 80px;
    padding: 16px 14px;
  }
  .didc-hero-v3 .benefit .btext strong { font-size: 13px; }
  .didc-hero-v3 .benefit .btext small { font-size: 11px; }
  .didc-hero-v3 .benefit .bicon-ai {
    width: 32px; height: 32px;
  }
  .didc-hero-v3 .benefit .bicon-ai svg {
    width: 16px; height: 16px;
  }

  /* Trust strip — taller for stacked chips */
  .didc-hero-v3 .trust {
    height: auto;
    min-height: 90px;
    padding: 16px 0 12px;
  }
  .didc-hero-v3 .trust-head {
    height: auto;
    flex-wrap: wrap;
    padding: 0 12px 12px;
    line-height: 1.4;
  }
  .didc-hero-v3 .marquee {
    height: 56px;
  }
  .didc-hero-v3 .marquee__set {
    gap: 28px;
    padding-right: 28px;
  }
  .didc-hero-v3 .marquee__set .client-logo {
    height: 36px !important;
    max-width: 120px !important;
  }
}

/* ─── SMALL MOBILE (≤380px) — extra tight ─── */
@media (max-width: 380px) {
  .didc-hero-v3 .hero-didc { padding: 24px 16px 48px; }
  .didc-hero-v3 h1 { font-size: 32px; }
  .didc-hero-v3 .visual { height: 320px; }
  .didc-hero-v3 .orbit { transform: translate(-50%, -50%) scale(0.42); }
  .didc-hero-v3 .hero-stat strong { font-size: 19px; }
  .didc-hero-v3 .benefit .bicon-ai { width: 28px; height: 28px; }
}

/* ==========================================================================
   HERO V4 — fluid desktop composition
   Replaces the fixed 1672px positioning at real-world desktop widths.
   ========================================================================== */
@media (min-width: 901px) {
  .didc-hero-v3 .stage{max-width:1440px!important;min-height:auto!important;padding:0 44px!important}
  .didc-hero-v3 .hero-didc{
    height:auto!important;
    min-height:780px!important;
    padding:64px 0 46px!important;
    display:grid!important;
    grid-template-columns:minmax(0,1.02fr) minmax(520px,.98fr)!important;
    grid-template-rows:auto auto!important;
    column-gap:clamp(36px,4vw,72px)!important;
    row-gap:34px!important;
    align-items:center!important
  }
  .didc-hero-v3 .left{
    position:relative!important;
    left:auto!important;top:auto!important;
    width:auto!important;max-width:650px!important;
    grid-column:1!important;grid-row:1!important;
    align-self:center!important
  }
  .didc-hero-v3 h1{width:auto!important;font-size:clamp(52px,4.7vw,68px)!important;line-height:1.01!important}
  .didc-hero-v3 .lead{width:auto!important;max-width:62ch!important;font-size:16px!important}
  .didc-hero-v3 .lead-chips{max-width:610px!important;margin-bottom:20px!important}
  .didc-hero-v3 .actions{margin-top:20px!important}
  .didc-hero-v3 .hero-stats{margin-top:24px!important;padding-top:18px!important}
  .didc-hero-v3 .hero-stat strong{font-size:25px!important}
  .didc-hero-v3 .visual{
    position:relative!important;
    left:auto!important;top:auto!important;
    width:100%!important;height:585px!important;
    grid-column:2!important;grid-row:1!important;
    align-self:center!important;
    min-width:0!important
  }
  .didc-hero-v3 .orbit{
    left:50%!important;top:50%!important;
    transform:translate(-50%,-50%) scale(.82)!important;
    transform-origin:center!important
  }
  .didc-hero-v3 .float{width:154px!important;padding:16px!important}
  .didc-hero-v3 .float.f-a{left:0!important;top:36px!important}
  .didc-hero-v3 .float.f-c{left:0!important;top:auto!important;bottom:72px!important}
  .didc-hero-v3 .float.f-e{left:auto!important;right:0!important;bottom:38px!important}
  .didc-hero-v3 .float.f-b,
  .didc-hero-v3 .float.f-d,
  .didc-hero-v3 .float.f-f{display:none!important}
  .didc-hero-v3 .node.left{display:none!important}
  .didc-hero-v3 .benefits{
    position:relative!important;
    left:auto!important;bottom:auto!important;
    grid-column:1!important;grid-row:2!important;
    width:100%!important;max-width:none!important;
    margin:0!important
  }
  .didc-hero-v3 .benefit{height:142px!important;padding:20px 15px!important;grid-template-columns:42px 1fr!important;gap:10px!important}
  .didc-hero-v3 .benefit .btext small{font-size:10.5px!important;line-height:1.4!important}
  .didc-hero-v3 .trust{
    position:relative!important;
    left:auto!important;bottom:auto!important;
    grid-column:2!important;grid-row:2!important;
    width:100%!important;height:142px!important;
    margin:0!important
  }
  .didc-hero-v3 .trust-head{justify-content:flex-start!important;font-size:9.5px!important}
}
@media (min-width:901px) and (max-width:1120px){
  .didc-hero-v3 .stage{padding-inline:28px!important}
  .didc-hero-v3 .hero-didc{grid-template-columns:minmax(0,1fr) minmax(430px,.9fr)!important;column-gap:26px!important}
  .didc-hero-v3 h1{font-size:50px!important}
  .didc-hero-v3 .orbit{transform:translate(-50%,-50%) scale(.68)!important}
  .didc-hero-v3 .float{display:none!important}
}

/* AI inference field and meaningful motion */
.didc-hero-v3 .hero-neural-field{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;z-index:0!important;opacity:.42!important;pointer-events:none!important;mask-image:linear-gradient(90deg,rgba(0,0,0,.38) 0%,rgba(0,0,0,.58) 40%,#000 72%,rgba(0,0,0,.78) 100%)}
.didc-hero-v3 .ai-scan{position:absolute;z-index:1;inset:10% 4%;pointer-events:none;background:linear-gradient(180deg,transparent 0,rgba(237,20,64,.035) 48%,rgba(237,20,64,.17) 50%,rgba(237,20,64,.035) 52%,transparent 100%);background-size:100% 210%;animation:didc-ai-scan 7s cubic-bezier(.4,0,.2,1) infinite;mask-image:radial-gradient(ellipse at center,#000,transparent 74%)}
@keyframes didc-ai-scan{0%,12%{background-position:0 115%}70%,100%{background-position:0 -105%}}
.didc-hero-v3 .ai-legend{position:absolute;top:4px;right:4px;z-index:5;display:flex;align-items:center;gap:14px;color:#6b6b6b;font:600 8px var(--h-ff-m);letter-spacing:.11em;text-transform:uppercase}
.didc-hero-v3 .ai-legend span{display:flex;align-items:center;gap:7px}.didc-hero-v3 .ai-legend i{width:6px;height:6px;border-radius:50%;background:#4d8b31;box-shadow:0 0 0 4px rgba(77,139,49,.11);animation:didc-pulse-green 2s infinite}.didc-hero-v3 .ai-legend b{padding:5px 8px;border:1px solid rgba(237,20,64,.16);border-radius:99px;color:#ed1440;background:rgba(255,255,255,.76)}
.didc-hero-v3 .ai-packet{position:absolute;z-index:4;width:8px;height:8px;border-radius:50%;background:#ed1440;box-shadow:0 0 0 5px rgba(237,20,64,.1),0 0 16px rgba(237,20,64,.55);offset-rotate:0deg}
.didc-hero-v3 .packet-1{offset-path:circle(245px at 277px 277px);animation:didc-packet 8s linear infinite}
.didc-hero-v3 .packet-2{width:6px;height:6px;background:#c8861d;offset-path:circle(182px at 277px 277px);animation:didc-packet 6.2s linear infinite -2.2s}
.didc-hero-v3 .packet-3{width:5px;height:5px;background:#4d8b31;offset-path:circle(134px at 277px 277px);animation:didc-packet 5s linear infinite -3.6s}
@keyframes didc-packet{from{offset-distance:0%}to{offset-distance:100%}}
.didc-hero-v3 .core-state{margin-top:10px!important;padding:4px 7px!important;border:1px solid rgba(77,139,49,.2)!important;border-radius:99px!important;background:#f4faef!important;color:#4d8b31!important;font:700 7px var(--h-ff-m)!important;letter-spacing:.09em!important;text-transform:uppercase!important}
@media(min-width:901px){.didc-hero-v3 .visual{perspective:1100px!important;--hero-scale:.82}.didc-hero-v3 .orbit{transform:translate(calc(-50% + var(--hero-px,0px)),calc(-50% + var(--hero-py,0px))) scale(var(--hero-scale)) rotateX(var(--hero-rx,0deg)) rotateY(var(--hero-ry,0deg))!important;transition:transform .5s cubic-bezier(.22,.85,.3,1)!important;transform-style:preserve-3d!important}.didc-hero-v3 .core{backface-visibility:hidden}.didc-hero-v3 .float{transition:transform .45s cubic-bezier(.22,.85,.3,1),box-shadow .3s!important}}
@media(min-width:901px) and (max-width:1120px){.didc-hero-v3 .visual{--hero-scale:.68}}
@media(prefers-reduced-motion:reduce){.didc-hero-v3 .ai-scan,.didc-hero-v3 .ai-packet,.didc-hero-v3 .ai-legend i{animation:none!important}.didc-hero-v3 .hero-neural-field{display:none!important}}
@media(max-width:900px){.didc-hero-v3 .hero-neural-field,.didc-hero-v3 .ai-scan,.didc-hero-v3 .ai-legend{display:none!important}}

/* Equal, aligned AI capability cards */
.didc-hero-v3 .benefits{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  align-items:stretch!important;
  gap:14px!important
}
.didc-hero-v3 .benefit{
  position:relative!important;
  width:100%!important;
  min-width:0!important;
  height:148px!important;
  padding:20px 17px!important;
  grid-template-columns:42px minmax(0,1fr)!important;
  align-items:start!important;
  gap:12px!important;
  overflow:hidden!important
}
.didc-hero-v3 .benefit:before{
  content:""!important;
  position:absolute!important;
  top:0!important;left:0!important;
  width:100%!important;height:3px!important;
  background:linear-gradient(90deg,#ed1440 0 28%,rgba(237,20,64,.12) 28% 100%)!important;
  transform:none!important
}
.didc-hero-v3 .benefit .bicon-ai{
  width:40px!important;
  height:40px!important;
  margin:0!important;
  flex:none!important;
  align-self:start!important
}
.didc-hero-v3 .benefit .btext{
  min-width:0!important;
  height:100%!important;
  display:grid!important;
  grid-template-rows:minmax(34px,auto) 1fr!important;
  align-content:start!important;
  gap:7px!important
}
.didc-hero-v3 .benefit .btext strong{
  display:block!important;
  margin:0!important;
  color:#1a1a1a!important;
  font-size:13px!important;
  line-height:1.28!important;
  overflow-wrap:anywhere!important
}
.didc-hero-v3 .benefit .btext small{
  display:block!important;
  margin:0!important;
  color:#6b6b6b!important;
  font-size:10.5px!important;
  line-height:1.42!important;
  overflow-wrap:anywhere!important
}
@media(max-width:767px){
  .didc-hero-v3 .benefits{grid-template-columns:1fr!important;gap:10px!important}
  .didc-hero-v3 .benefit{height:auto!important;min-height:106px!important}
  .didc-hero-v3 .benefit .btext{grid-template-rows:auto auto!important}
}
