/* /approach page. Sits on top of styles.css. */

.page-hero {
  position: relative; overflow: hidden;
  padding: 180px 0 92px; text-align: center;
}
.page-hero-inner { position: relative; z-index: 3; }
.page-hero h1 { margin: 24px 0 22px; font-size: clamp(38px, 5.4vw, 70px); }
.page-hero .lede { max-width: 620px; margin: 0 auto; }

/* ---------- thesis ---------- */
.thesis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.th {
  padding: 34px 30px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.th-n {
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--accent-lite); margin-bottom: 18px;
}
.th h3 { font-size: clamp(19px, 1.9vw, 23px); line-height: 1.2; margin-bottom: 14px; }
.th p { color: var(--dim); font-size: 15px; line-height: 1.6; }
.th p + p { margin-top: 14px; }
.th-line {
  margin-top: 18px !important; padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #fff !important; font-weight: 600; letter-spacing: -0.02em;
}

/* ---------- what we do ---------- */
.doing { display: flex; flex-direction: column; gap: 26px; }
.do-item {
  display: grid; grid-template-columns: 300px 1fr; gap: 34px; align-items: center;
  padding: 26px; border-radius: var(--r-lg);
  background: var(--panel); border: 1px solid var(--line);
}
.do-item.flip { grid-template-columns: 1fr 300px; }
.do-item.flip .do-media { order: 2; }
.do-media {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 3; border: 1px solid var(--line);
}
.do-media video { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.9); }
.do-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,.1) 0%, rgba(8,9,12,.6) 100%);
}
.do-tag {
  display: inline-block; margin-bottom: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-lite);
}
.do-copy h3 { margin-bottom: 12px; }
.do-copy p { color: var(--dim); font-size: 15.5px; line-height: 1.6; max-width: 620px; }
.do-copy .btn { margin-top: 22px; font-size: 15px; padding: 13px 26px; }

/* ---------- fit ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-col {
  padding: 34px 30px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
}
.fit-col.good { border-color: rgba(75,208,126,.3); }
.fit-col.bad { border-color: rgba(255,120,120,.22); }
.fit-col h3 { margin-bottom: 22px; font-size: 22px; }
.fit-col.good h3 { color: #8FE0AE; }
.fit-col.bad h3 { color: #F5A9A9; }
.fit-col ul { display: flex; flex-direction: column; gap: 12px; }
.fit-col li {
  position: relative; padding-left: 30px;
  font-size: 15px; line-height: 1.55; color: #D3D7DE; letter-spacing: -0.014em;
}
.fit-col li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.fit-col.good li::before {
  background-color: rgba(75,208,126,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234BD07E'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}
.fit-col.bad li::before {
  background-color: rgba(255,120,120,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5A9A9'%3E%3Cpath d='M19 6.4 17.6 5 12 10.6 6.4 5 5 6.4 10.6 12 5 17.6 6.4 19 12 13.4 17.6 19 19 17.6 13.4 12z'/%3E%3C/svg%3E");
}

.who-note {
  margin-top: 30px; padding: 30px 34px; border-radius: var(--r-lg); text-align: center;
  background: var(--panel); border: 1px solid var(--line);
}
.who-note p { color: var(--dim); font-size: 15.5px; line-height: 1.6; max-width: 620px; margin: 0 auto; }
.who-note .btn { margin-top: 24px; }

@media (max-width: 1024px) {
  .thesis { grid-template-columns: 1fr; }
  .do-item, .do-item.flip { grid-template-columns: 1fr; gap: 24px; }
  .do-item.flip .do-media { order: 0; }
  .do-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 720px) {
  .page-hero { padding: 148px 0 64px; }
  .fit-grid { grid-template-columns: 1fr; }
  .th, .fit-col, .who-note { padding: 26px 22px; }
  .do-item { padding: 18px; }
}
