/* ── How We Operate page-specific styles ── */

/* Hero */
.hwo-hero {
  padding: 120px 0 0;
}

.hwo-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--base-color-orange--500);
  margin-bottom: 1.5rem;
}

.hwo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

/* Bridge section */
.hwo-bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.hwo-bridge-heading {
  position: sticky;
  top: 5.5rem;
}

.hwo-bridge-body p {
  color: var(--text-color--text-alternate-secondary);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.hwo-dna-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.hwo-dna-pills a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 500rem;
  border: 1.5px solid var(--base-color-neutral--700);
  color: var(--text-color--text-alternate-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hwo-dna-pills a:hover {
  border-color: var(--base-color-orange--500);
  color: var(--base-color-orange--500);
}

/* Cluster spacing */
.hwo-cluster .overline {
  padding: 3rem 0 1.5rem;
  margin-bottom: 1.5rem;
}

.hwo-cluster:first-child .overline {
  padding-top: 0;
}

.faq_number {
  color: #ffb200;
  min-width: 2.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Principle rows */
.hwo-principle {
  padding: 2.5rem 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
}

.hwo-principle__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}

.hwo-principle__name {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.hwo-principle__headline {
  font-style: italic;
  color: var(--text-color--text-white);
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.hwo-principle__body {
  color: var(--text-color--text-white);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

/* Candor */
.hwo-candor h2 {
  margin-bottom: 1.75rem;
}

.hwo-candor p {
  color: var(--text-color--text-alternate-secondary);
  line-height: 1.75;
}

/* Who thrives — cards matching the design system */
.hwo-thrives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hwo-thrives-col {
  border: 1px solid var(--base-color-neutral--700);
  border-radius: 1.375rem;
  padding: 2.5rem;
}

.hwo-thrives-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hwo-thrives-col--yes .hwo-thrives-label { color: var(--base-color-green--500); }
.hwo-thrives-col--no  .hwo-thrives-label { color: var(--base-color-orange--500); }

.hwo-thrives-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hwo-thrives-col li {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  color: var(--base-color-neutral--200);
}

.hwo-thrives-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--base-color-green--500);
  font-weight: 700;
}

.hwo-thrives-col--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--base-color-orange--500);
  font-weight: 700;
}

/* CTA */
.hwo-cta {
  text-align: center;
}

.hwo-cta p {
  max-width: 37.5rem;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
  color: var(--text-color--text-alternate-secondary);
}

/* Responsive */
@media screen and (max-width: 991px) {
  .hwo-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hwo-bridge-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hwo-bridge-heading { position: static; }
  .hwo-principle { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
}

@media screen and (max-width: 767px) {
  .hwo-hero { padding-top: 5rem; }
  .hwo-thrives-grid { grid-template-columns: 1fr; }
  .hwo-principle { grid-template-columns: 1fr; padding: 1.5rem 0; }
  .hwo-principle .faq_number { display: none; }
}
