:root {
  --max: 1100px;
}

.case-hero {
  padding: 10rem var(--pad) 5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  opacity: 0;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  font-size: .65rem;
  font-weight: 300;
  animation: .5s .1s forwards fadeUp;
  display: flex;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity .2s;
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb span {
  opacity: .4;
}

.case-tag {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  background: var(--gold-pale);
  opacity: 0;
  border-radius: 1px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .3rem .75rem;
  font-size: .65rem;
  font-weight: 300;
  animation: .5s .15s forwards fadeUp;
  display: inline-flex;
}

.case-h1 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  color: var(--ink);
  opacity: 0;
  max-width: 16ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  animation: .6s .2s forwards fadeUp;
}

.case-h1 em {
  color: var(--gold);
  font-style: italic;
}

.case-intro {
  color: var(--ink2);
  opacity: 0;
  max-width: 56ch;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
  animation: .6s .3s forwards fadeUp;
}

.case-meta-row {
  border-top: 1px solid var(--rule);
  opacity: 0;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  animation: .6s .4s forwards fadeUp;
  display: flex;
}

.case-meta-item .meta-label {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: .3rem;
  font-size: .62rem;
  font-weight: 300;
}

.case-meta-item .meta-val {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 500;
}

.case-body {
  max-width: var(--max);
  padding: 0 var(--pad);
  margin: 0 auto;
}

.case-section {
  border-top: 1px solid var(--rule);
  padding: 4rem 0;
}

.case-section:first-child {
  border-top: none;
}

.section-eyebrow {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .62rem;
  font-weight: 300;
  display: flex;
}

.section-eyebrow:before {
  content: "";
  background: var(--gold);
  width: 1.25rem;
  height: 1px;
}

.case-section h2 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
}

.case-section p {
  color: var(--ink2);
  max-width: 64ch;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.case-section p:last-child {
  margin-bottom: 0;
}

.problem-grid {
  border: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  display: grid;
}

.problem-card {
  border-right: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.problem-card:last-child {
  border-right: none;
}

.problem-num {
  font-family: var(--mono);
  letter-spacing: .1em;
  color: var(--ink3);
  margin-bottom: 1rem;
  font-size: .6rem;
  font-weight: 300;
}

.problem-card h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: .6rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.problem-card p {
  color: var(--ink3);
  font-size: .84rem;
  line-height: 1.6;
}

.problem-accent {
  background: var(--warmer);
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.problem-card:hover .problem-accent {
  background: var(--gold);
}

.features-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  display: grid;
}

.feature {
  background: var(--warm);
  border: 1px solid var(--rule);
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  display: flex;
}

.feature-icon {
  border: 1px solid var(--rule);
  background: var(--parchment);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 2px;
  display: flex;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.feature-text h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: .3rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-text p {
  color: var(--ink3);
  font-size: .83rem;
  line-height: 1.6;
}

.outcomes-list {
  border: 1px solid var(--rule);
  flex-direction: column;
  max-width: 700px;
  margin-top: 2rem;
  display: flex;
}

.outcome-item {
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  transition: background .2s;
  display: flex;
}

.outcome-item:last-child {
  border-bottom: none;
}

.outcome-item:hover {
  background: var(--warm);
}

.outcome-check {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 1px;
  display: flex;
}

.outcome-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
}

.outcome-text {
  color: var(--ink2);
  font-size: .95rem;
  line-height: 1.6;
}

.outcome-text strong {
  color: var(--ink);
  font-weight: 500;
}

.pull-quote {
  background: var(--ink);
  margin: 4rem 0;
  padding: 3rem 3.5rem;
  position: relative;
}

.pull-quote:before {
  content: "“";
  font-family: var(--serif);
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 2rem;
}

.pull-quote p {
  font-family: var(--serif);
  color: var(--parchment);
  z-index: 1;
  max-width: 28ch;
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  position: relative;
}

.pull-quote p em {
  color: var(--gold-light);
  font-style: normal;
}

.dashboard-section {
  padding: 5rem var(--pad);
  background: var(--warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.dashboard-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.dashboard-label {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .62rem;
  font-weight: 300;
  display: flex;
}

.dashboard-label:before {
  content: "";
  background: var(--gold);
  width: 1.25rem;
  height: 1px;
}

.dashboard-title {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: .75rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
}

.dashboard-desc {
  color: var(--ink3);
  max-width: 58ch;
  margin-bottom: 2rem;
  font-size: .9rem;
  line-height: 1.7;
}

.dashboard-frame-wrap {
  border: 1px solid var(--rule);
  background: var(--parchment);
  overflow: hidden;
}

.dashboard-frame-bar {
  background: var(--ink);
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  display: flex;
}

.dashboard-frame-dot {
  background: #faf7f026;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.dashboard-frame-url {
  font-family: var(--mono);
  color: #faf7f066;
  letter-spacing: .04em;
  background: #faf7f014;
  border-radius: 2px;
  flex: 1;
  padding: .2rem .75rem;
  font-size: .65rem;
}

.dashboard-iframe {
  border: none;
  width: 100%;
  height: 700px;
  display: block;
}

.case-cta {
  padding: 6rem var(--pad);
  text-align: center;
}

.case-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.case-cta h2 {
  font-family: var(--serif);
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.case-cta h2 em {
  color: var(--gold);
  font-style: italic;
}

.case-cta p {
  color: var(--ink2);
  margin-bottom: 2.5rem;
  font-size: .95rem;
  line-height: 1.75;
}

.problem-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid--6 .problem-card:nth-child(3n) {
  border-right: none;
}

.problem-grid--6 .problem-card:nth-child(n+4) {
  border-top: 1px solid var(--rule);
}

.panels-grid {
  border: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  display: grid;
}

.panel-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  display: flex;
  position: relative;
}

.panel-card:nth-child(3n) {
  border-right: none;
}

.panel-card:nth-child(4), .panel-card:nth-child(5), .panel-card:nth-child(6) {
  border-bottom: none;
}

.panel-num {
  font-family: var(--mono);
  letter-spacing: .1em;
  color: var(--ink3);
  margin-bottom: .9rem;
  font-size: .6rem;
  font-weight: 300;
}

.panel-card h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: .5rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
}

.panel-card p {
  color: var(--ink3);
  flex: 1;
  font-size: .84rem;
  line-height: 1.6;
}

.panel-before {
  background: var(--warmer);
  border-left: 2px solid var(--gold);
  color: var(--ink2);
  margin-top: 1.25rem;
  padding: .75rem 1rem;
  font-size: .78rem;
  line-height: 1.5;
}

.panel-before span {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
  font-size: .6rem;
  font-weight: 300;
  display: block;
}

.reports-grid {
  border: 1px solid var(--rule);
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  display: grid;
}

.report-item {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  transition: background .2s;
  display: flex;
}

.report-item:hover {
  background: var(--warm);
}

.report-item:nth-child(2n) {
  border-right: none;
}

.report-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.report-arrow {
  font-family: var(--mono);
  color: var(--gold);
  opacity: .7;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .85rem;
}

.report-item:hover .report-arrow {
  opacity: 1;
}

.report-text h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: .3rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.report-text p {
  color: var(--ink3);
  margin: 0;
  font-size: .82rem;
  line-height: 1.6;
}

.metrics-table {
  border: 1px solid var(--rule);
  margin-top: 2.5rem;
}

.metrics-row {
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 1.6fr 2.5fr 2.5fr;
  display: grid;
}

.metrics-row:last-child {
  border-bottom: none;
}

.metrics-row > div {
  color: var(--ink2);
  padding: 1rem 1.25rem;
  font-size: .85rem;
  line-height: 1.55;
}

.metrics-row > div + div {
  border-left: 1px solid var(--rule);
}

.metrics-header {
  background: var(--ink);
}

.metrics-header > div {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #faf9f673;
  font-size: .6rem;
  font-weight: 300;
}

.metrics-header > div + div {
  border-left-color: #faf9f614;
}

.metrics-row:not(.metrics-header):hover {
  background: var(--warm);
}

.metric-name {
  font-family: var(--mono);
  letter-spacing: .02em;
  font-size: .75rem;
  font-weight: 400;
  color: var(--gold) !important;
}

@media (width <= 780px) {
  .problem-grid, .problem-grid--6 {
    grid-template-columns: 1fr;
  }

  .problem-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .problem-card:last-child {
    border-bottom: none;
  }

  .problem-grid--6 .problem-card:nth-child(n+4) {
    border-top: none;
  }

  .features-grid, .panels-grid, .reports-grid {
    grid-template-columns: 1fr;
  }

  .panel-card {
    border-right: none;
  }

  .panel-card:nth-child(5), .panel-card:nth-child(6) {
    border-bottom: 1px solid var(--rule);
  }

  .panel-card:last-child {
    border-bottom: none;
  }

  .report-item {
    border-right: none;
  }

  .report-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--rule);
  }

  .report-item:last-child {
    border-bottom: none;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .metrics-row > div + div {
    border-left: none;
    border-top: 1px solid var(--rule);
  }

  .metrics-header > div + div {
    border-top-color: #faf9f614;
    border-left: none;
  }

  .pull-quote {
    padding: 2rem 1.75rem;
  }

  .dashboard-iframe {
    height: 500px;
  }

  .case-meta-row {
    gap: 1.75rem;
  }
}
/*# sourceMappingURL=work-cpg-sales-intelligence.9a244594.css.map */
