/* dna-exploits page — editorial exploits gallery, Lorenz backdrop */

/* hero — Lorenz attractor at 12% opacity, anchored top-right */
.dna-exploits-hero {
  background: var(--black);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10rem 5rem 6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.dna-exploits-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_185110/images/d5ecc6d9-2b27-48aa-8123-0c8929956ce6.png');
  background-size: 45%;
  background-position: 95% 15%;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.dna-exploits-hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

/* hero typography — matches dna-family convention */
.dna-exploits-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.dna-exploits-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.dna-exploits-standfirst {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.85;
}

/* exploits section — Lorenz watermark, two-column editorial layout */
.dna-exploits-section {
  background: var(--dark);
  padding: 8rem 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.dna-exploits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_185110/images/d5ecc6d9-2b27-48aa-8123-0c8929956ce6.png');
  background-size: 40%;
  background-position: 90% 10%;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.dna-exploits-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

/* exploit item — alternating photo/copy columns */
.dna-exploits-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dna-exploits-item--reverse .dna-exploits-copy {
  order: -1;
}

.dna-exploits-photo-wrap {
  width: 100%;
}

.dna-exploits-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05) brightness(0.92);
}

.dna-exploits-copy {
  display: flex;
  flex-direction: column;
}

.dna-exploits-eyebrow-row {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.dna-exploits-item-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.dna-exploits-item-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
}

/* responsive — match dna-family breakpoint scheme */
@media (max-width: 1024px) {
  .dna-exploits-hero {
    padding: 8rem 3rem 5rem;
    min-height: 50vh;
  }
  .dna-exploits-item {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .dna-exploits-item--reverse {
    direction: ltr;
  }
  .dna-exploits-inner {
    gap: 5rem;
  }
}

@media (max-width: 768px) {
  .dna-exploits-hero {
    padding: 5rem 1.5rem 3rem;
    min-height: auto;
  }
  .dna-exploits-section {
    padding: 5rem 1.5rem;
  }
  .dna-exploits-inner {
    gap: 4rem;
  }
}
