@charset "UTF-8";
/**
 *  consulting.scss — page styles for consulting.html (the practice page,
 *  renamed from process.html).
 *  Compiled by CodeKit to build/css/consulting.css.
 *  Ported from the v3 prototype (process.html), Round 103.
 */
/* The hero scaffold comes from _template.hero.scss; consulting keeps its
   accent color, the bold lead fragment, and the legend's emphasis pair. */
body.consulting section.hero h1 span.accent {
  color: rgb(0, 124, 153);
}

body.consulting section.hero div.copy p.lead b {
  color: rgb(14, 27, 39);
}

body.consulting section.hero div.legend b {
  color: rgb(0, 43, 73);
  font-weight: 500;
}

/* The catalog of services — three grouped lists. */
body.consulting section.services {
  padding: 76px 0 64px;
}

body.consulting section.services div.groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

body.consulting section.services div.group {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px -24px rgba(0, 43, 73, 0.3);
}

body.consulting section.services div.group h3 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(0, 124, 153);
  margin: 0 0 14px;
}

body.consulting section.services div.group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.consulting section.services div.group li {
  padding: 13px 0;
  border-top: 1px dashed rgb(230, 234, 238);
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

body.consulting section.services div.group li > svg {
  width: 19px;
  height: 19px;
  flex: none;
  color: rgb(0, 124, 153);
  margin-top: 2px;
}

body.consulting section.services div.group li > div {
  flex: 1;
}

body.consulting section.services div.group li b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: rgb(0, 43, 73);
  line-height: 1.3;
}

body.consulting section.services div.group li span {
  display: block;
  font-size: 13.5px;
  color: rgb(91, 107, 122);
  margin-top: 3px;
  line-height: 1.55;
}

body.consulting section.services div.group li span a {
  color: rgb(0, 124, 153);
  font-weight: 600;
  text-decoration: none;
}

/* The delivery chapter — five process groups against one triple
   constraint, and the monthly briefing that proves group 04. */
body.consulting section.delivery {
  padding: 40px 0;
}

body.consulting section.delivery div.sequence {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}

body.consulting section.delivery div.sequence span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgb(0, 43, 73);
  color: rgb(127, 202, 219);
  padding: 10px 20px 10px 26px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
}

body.consulting section.delivery div.sequence span:first-child {
  padding-left: 20px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

body.consulting section.delivery div.phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

body.consulting section.delivery div.phase {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 30px -26px rgba(0, 43, 73, 0.3);
}

body.consulting section.delivery div.phase p.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 9px;
}

body.consulting section.delivery div.phase p {
  font-size: 13.5px;
  color: rgb(91, 107, 122);
  line-height: 1.55;
}

/* Re-asserted at phase-child specificity (the Round-97 lesson): the sized
   phase paragraph above would otherwise shrink the eyebrow and tighten
   its line box (v3's eyebrow inherited the body's 1.65). */
body.consulting section.delivery div.phase p.eyebrow {
  font-size: 11px;
  line-height: 1.65;
}

/* Group 04 is "selected"; the dashed drop ties it to the live card below. */
body.consulting section.delivery div.phase.live {
  border-color: rgb(0, 145, 179);
  box-shadow: 0 8px 30px -22px rgba(0, 145, 179, 0.45);
}

body.consulting section.delivery div.phase.live p.eyebrow {
  color: rgb(194, 77, 0);
}

body.consulting section.delivery div.phase p.indicator {
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  line-height: 1.65;
  color: rgb(194, 77, 0);
}

body.consulting section.delivery p.footnote {
  text-align: center;
  font-size: 13.5px;
  color: rgb(91, 107, 122);
  max-width: 72ch;
  margin: 24px auto 0;
}

body.consulting section.delivery div.connector {
  width: 0;
  height: 32px;
  margin: 24px auto 0;
  border-left: 2px dashed rgba(0, 145, 179, 0.5);
}

body.consulting section.delivery div.demonstration {
  max-width: 780px;
  margin: 10px auto 0;
}

body.consulting section.delivery div.demonstration p.eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

body.consulting section.delivery div.demonstration p.preface {
  text-align: center;
  font-size: 13.5px;
  color: rgb(91, 107, 122);
  max-width: 72ch;
  margin: 0 auto 20px;
}

/* The briefing card. */
body.consulting div.briefing {
  position: relative;
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  box-shadow: 0 8px 30px -24px rgba(0, 43, 73, 0.3);
  padding: 24px 26px 18px;
  width: 100%;
}

body.consulting div.briefing div.stamp {
  position: absolute;
  top: -14px;
  right: 22px;
  transform: rotate(4deg);
  background: rgba(255, 255, 255, 0.92);
  border: 2.5px solid rgb(255, 108, 14);
  border-radius: 6px;
  color: rgb(255, 108, 14);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.consulting div.briefing div.stamp.active {
  opacity: 1;
  transform: rotate(-3deg);
}

body.consulting div.briefing div.heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgb(230, 234, 238);
  padding-bottom: 12px;
}

body.consulting div.briefing div.heading p.title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgb(91, 107, 122);
}

body.consulting div.briefing div.heading p.badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgb(0, 124, 153);
  white-space: nowrap;
}

body.consulting div.briefing canvas {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: 14px;
  cursor: crosshair;
}

body.consulting div.briefing div.caption {
  margin-top: 8px;
  min-height: 74px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px dashed rgb(230, 234, 238);
  padding-top: 12px;
}

body.consulting div.briefing div.caption div.avatar {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(0, 43, 73);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

body.consulting div.briefing div.caption div.summary {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgb(14, 27, 39);
}

body.consulting div.briefing div.caption span.month {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgb(0, 124, 153);
  display: block;
  margin-bottom: 3px;
}

body.consulting div.briefing div.footer {
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: #5c6b78;
  display: flex;
  justify-content: space-between;
}

body.consulting div.briefing div.footer em {
  font-style: normal;
  color: rgb(194, 77, 0);
}

body.consulting section.delivery p.label {
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(91, 107, 122);
}

@media (max-width: 980px) {
  body.consulting section.delivery div.phases {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 880px) {
  body.consulting section.services div.groups {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  body.consulting section.delivery div.phases {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  body.consulting section.hero div.actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.consulting section.hero div.actions a {
    text-align: center;
  }
}
