/* ============================================================
   DAF — Approach page
   ============================================================ */

/* ---------- Hero ---------- */
.ap-hero { position: relative; border-bottom: 1px solid var(--line); background: var(--paper); }
.ap-hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--pad) clamp(30px, 4vw, 56px);
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.ap-hero-intro .label { display: block; margin-bottom: clamp(20px, 2.6vw, 36px); }
.ap-h1 {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.04;
  margin-bottom: clamp(26px, 3vw, 42px);
}
.ap-hero-note { display: flex; gap: 18px; align-items: flex-start; }
.ap-hero-note .crosshair { margin-top: 2px; }
.ap-hero-note .body-text { max-width: 38ch; }

/* Venn */
.ap-venn { display: flex; flex-direction: column; align-items: center; }
.ap-venn svg { width: min(100%, 460px); height: auto; display: block; }
.ap-venn .vlabel { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; fill: var(--ink); text-transform: uppercase; font-weight: 700; }
.ap-venn .vsub { font-family: var(--mono); font-size: 8px; letter-spacing: 0.06em; fill: rgba(10,10,10,.55); }
.ap-venn-cap {
  font-family: var(--grotesk); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
  margin-top: 14px;
}

/* ---------- Stats strip ---------- */
.ap-stats { border-bottom: 1px solid var(--line); background: var(--paper); }
.ap-stats-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.ap-stat {
  text-align: center;
  padding: clamp(26px, 3vw, 44px) 12px;
  border-right: 1px solid var(--line);
}
.ap-stat:last-child { border-right: 0; }
.ap-stat .n {
  font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1; letter-spacing: -0.01em;
}
.ap-stat .n .pl { color: var(--blue); }
.ap-stat .l {
  font-family: var(--grotesk); font-weight: 600; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin-top: 10px;
}

/* ---------- Section scaffolding ---------- */
.ap-sec { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 5vw, 72px) var(--pad); }
.ap-sec > .label { display: block; margin-bottom: clamp(26px, 3vw, 42px); }
.ap-rule { border-bottom: 1px solid var(--line); }

/* ---------- Why this approach works ---------- */
.ap-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ap-why {
  display: flex; flex-direction: column;
  padding: 6px clamp(18px, 2.4vw, 34px) 0;
  border-right: 1px solid var(--line-soft);
}
.ap-why:first-child { padding-left: 0; }
.ap-why:last-child { border-right: 0; padding-right: 0; }
.ap-why .ico { height: 72px; display: flex; align-items: flex-start; color: var(--ink); }
.ap-why .ico svg { display: block; }
.ap-why h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 12px;
  max-width: 12ch;
}
.ap-why p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin-bottom: 22px; }
.ap-why .arr { margin-top: auto; color: var(--ink); }

/* ---------- How we work ---------- */
.ap-steps-head {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  margin-bottom: clamp(22px, 2.6vw, 36px);
}
.ap-step-id { display: flex; align-items: center; gap: 16px; }
.ap-step-id .num {
  font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1; color: var(--blue);
}
.ap-step-id .nm {
  font-family: var(--grotesk); font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.ap-step-id .lead {
  flex: 1; height: 9px; color: var(--ink); opacity: .8;
  display: flex; align-items: center; min-width: 40px;
}
.ap-step-id .lead svg { width: 100%; height: 9px; }
.ap-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}
.ap-step { display: flex; flex-direction: column; position: relative; }
.ap-step:not(:last-child)::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  right: calc(clamp(18px, 2.4vw, 34px) / -2);
  width: 1px; background: var(--line-soft);
}
.ap-step .ph { position: relative; aspect-ratio: 16/10.5; background: var(--ink); overflow: hidden; margin-bottom: 20px; }
.ap-step .ph image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ap-step .lead-line { font-family: var(--grotesk); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.ap-step .desc { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; max-width: 38ch; }
.ap-step ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.ap-step ul li {
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--grotesk); font-size: 12.5px; font-weight: 500; color: var(--ink);
}
.ap-step ul li::before { content: "+"; color: var(--blue); font-weight: 700; flex: 0 0 auto; }

/* ---------- Human + Machine ---------- */
.ap-hm { padding-top: 0; }
.ap-hm-band { display: grid; grid-template-columns: clamp(140px, 17vw, 220px) 1fr clamp(140px, 17vw, 220px); }
.ap-hm-img { position: relative; background: var(--ink); overflow: hidden; }
.ap-hm-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ap-hm-mid {
  background: var(--paper-2);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.4vw, 40px);
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 48px);
}
.ap-hm-txt { font-family: var(--grotesk); font-size: clamp(14px, 1.3vw, 16.5px); line-height: 1.55; color: var(--ink); max-width: 22ch; }
.ap-hm-txt .it { font-family: var(--serif); font-style: italic; color: var(--blue); font-size: 1.06em; }
.ap-hm-txt.right { justify-self: end; text-align: left; }
.ap-hm-venn { display: flex; flex-direction: column; align-items: center; }
.ap-hm-venn svg { width: clamp(220px, 24vw, 320px); height: auto; display: block; }
.ap-hm-venn .vlabel { font-family: var(--grotesk); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; fill: var(--ink); }
.ap-hm-verdict {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin-top: 10px;
  font-family: var(--grotesk); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
  text-align: center; line-height: 1.5;
}

/* ---------- When to call us ---------- */
.ap-call-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.ap-call {
  display: flex; flex-direction: column;
  min-height: 168px;
  padding: clamp(18px, 2vw, 26px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background .25s ease;
}
.ap-call:hover { background: var(--paper-2); }
.ap-call .ico { color: var(--ink); margin-bottom: auto; }
.ap-call .ico svg { display: block; }
.ap-call .row { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 26px; }
.ap-call .t { font-family: var(--grotesk); font-weight: 500; font-size: 14.5px; line-height: 1.3; max-width: 16ch; }
.ap-call .arr { flex: 0 0 auto; margin-bottom: 4px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.ap-call:hover .arr { transform: translateX(5px); }

/* ---------- When not to call us ---------- */
.ap-not { padding-top: 0; }
.ap-not-band {
  position: relative;
  background: var(--ink); color: var(--paper);
  display: grid; grid-template-columns: clamp(120px, 18vw, 260px) 1fr clamp(60px, 8vw, 120px);
  align-items: center;
  min-height: clamp(180px, 22vw, 260px);
  overflow: hidden;
}
.ap-not-tex { position: relative; height: 100%; background: url('assets/texture-blue-2.png') center/cover; }
.ap-not-copy { padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px); text-align: center; }
.ap-not-copy p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.25; letter-spacing: -0.01em;
  text-wrap: balance;
}
.ap-not-copy .it { font-style: italic; color: #5C79FF; }
.ap-not-mark { justify-self: center; color: rgba(242,239,233,.55); }

/* ---------- What we help build ---------- */
.ap-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.ap-tag {
  font-family: var(--grotesk); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 9px 16px; border: 1px solid var(--line);
  background: transparent; color: var(--ink);
}
.ap-tag-plus { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.ap-tag-more {
  font-family: var(--grotesk); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ---------- Brands by industry ---------- */
.ap-ind-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}
.ap-ind h4 {
  font-family: var(--grotesk); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  min-height: 40px;
}
.ap-ind ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ap-ind li { font-family: var(--grotesk); font-size: 12.5px; color: var(--muted); }
.ap-ind.wide { grid-column: span 2; }
.ap-ind ul.two-col { display: block; column-count: 2; column-gap: 26px; }
.ap-ind ul.two-col li { break-inside: avoid; margin-bottom: 8px; }
.ap-ind ul.logos { gap: 16px; padding-top: 4px; }
.ap-ind ul.logos li { display: flex; }
.ap-ind ul.logos img { height: 20px; width: auto; max-width: 116px; object-fit: contain; object-position: left center; opacity: .8; }

/* ---------- CTA ---------- */
.ap-cta { background: var(--paper); }
.ap-cta-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) var(--pad);
  display: grid; grid-template-columns: 1.1fr 1fr clamp(180px, 22vw, 300px);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}
.ap-cta-h {
  font-size: clamp(30px, 3.4vw, 50px); line-height: 1.08;
  margin-bottom: 24px;
}
.ap-cta-note { display: flex; gap: 14px; align-items: flex-start; }
.ap-cta-note .crosshair { width: 20px; height: 20px; margin-top: 1px; }
.ap-cta-note p { font-family: var(--grotesk); font-size: 13px; line-height: 1.5; color: var(--muted); max-width: 24ch; }
.ap-cta-mid { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; padding: 34px 0; }
.ap-cta-brackets { position: absolute; inset: 0; pointer-events: none; color: var(--ink); opacity: .6; }
.ap-cta-brackets i { position: absolute; width: 18px; height: 18px; border: 0 solid currentColor; }
.ap-cta-brackets .tl { left: 0; top: 0; border-left-width: 1px; border-top-width: 1px; }
.ap-cta-brackets .tr { right: 0; top: 0; border-right-width: 1px; border-top-width: 1px; }
.ap-cta-brackets .bl { left: 0; bottom: 0; border-left-width: 1px; border-bottom-width: 1px; }
.ap-cta-brackets .br { right: 0; bottom: 0; border-right-width: 1px; border-bottom-width: 1px; }
.ap-cta-mid .sub { font-family: var(--grotesk); font-size: 13px; color: var(--muted); }
.ap-cta-img { position: relative; aspect-ratio: 4/4.6; overflow: hidden; }
.ap-cta-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ap-cta-img::after {
  content: ""; position: absolute; left: -14px; bottom: 18%;
  width: 38%; height: 30%;
  background: url('assets/texture-blue-1.png') center/cover;
}

/* ---------- Slim footer ---------- */
.ap-footer {
  background: var(--ink); color: var(--paper);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: 16px var(--pad);
}
.ap-footer .daf-logo { height: 44px; width: auto; }
.ap-footer nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 40px); }
.ap-footer nav a {
  font-family: var(--grotesk); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper);
}
.ap-footer nav a.on { color: #5C79FF; }
.ap-footer .cop { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--muted-dk); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .ap-hero-grid { grid-template-columns: 1fr; }
  .ap-venn { order: 2; }
  .ap-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ap-stat:nth-child(3n) { border-right: 0; }
  .ap-stat:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .ap-why-grid { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .ap-why:nth-child(2n) { border-right: 0; }
  .ap-steps-head { display: none; }
  .ap-steps-grid { grid-template-columns: 1fr; }
  .ap-step:not(:last-child)::after { display: none; }
  .ap-call-grid { grid-template-columns: 1fr 1fr; }
  .ap-hm-band { grid-template-columns: 1fr; }
  .ap-hm-img { min-height: 220px; }
  .ap-hm-mid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .ap-hm-txt, .ap-hm-txt.right { max-width: 36ch; text-align: center; justify-self: center; }
  .ap-ind-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 22px; }
  .ap-cta-grid { grid-template-columns: 1fr; }
  .ap-cta-img { max-width: 320px; }
}
@media (max-width: 640px) {
  .ap-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-stat:nth-child(3n) { border-right: 1px solid var(--line); }
  .ap-stat:nth-child(2n) { border-right: 0; }
  .ap-stat:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .ap-why-grid { grid-template-columns: 1fr; }
  .ap-why { border-right: 0; padding-left: 0; padding-right: 0; }
  .ap-call-grid { grid-template-columns: 1fr; }
  .ap-not-band { grid-template-columns: 1fr; }
  .ap-not-tex { height: 90px; }
  .ap-not-mark { display: none; }
  .ap-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-footer { grid-template-columns: 1fr; justify-items: center; gap: 14px; padding: 22px var(--pad); }
}

/* Mockup spacing tweaks injected here when needed */
