/* OnGrid LAV case study + interactive components (workflow, modal, quotes) */

/* OnGrid project components — scoped naming (not ODIN) */

/* Workflow trigger */
.ongrid-workflow-trigger {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: linear-gradient(180deg, #0d1a1b 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0;
  margin: 28px 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  display: block;
  text-align: left;
  color: inherit;
  font: inherit;
}

.ongrid-workflow-trigger:hover {
  border-color: rgba(75, 193, 200, 0.45);
  box-shadow: 0 8px 32px rgba(75, 193, 200, 0.12);
  transform: translateY(-2px);
}

.ongrid-workflow-trigger:hover .ongrid-wt-arrow { transform: translateX(4px); }
.ongrid-workflow-trigger:hover .ongrid-wt-bar { opacity: 1; }

.ongrid-wt-bar {
  height: 4px;
  background: linear-gradient(to right, #3a9fa6, #4bc1c8, #2d8a91);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.ongrid-workflow-trigger .ongrid-wt-body {
  padding: 24px 24px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ongrid-wt-icon {
  width: 46px;
  height: 46px;
  background: rgba(75, 193, 200, 0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.ongrid-wt-text { flex: 1; min-width: 0; }

.ongrid-wt-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4bc1c8;
  margin-bottom: 3px;
}

.ongrid-wt-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.ongrid-wt-sub {
  font-size: 12.5px;
  color: #b0b0b0;
}

.ongrid-wt-arrow {
  font-size: 18px;
  color: #4bc1c8;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.ongrid-workflow-trigger .ongrid-wt-steps {
  display: flex;
  align-items: center;
  padding: 0 24px 20px;
  gap: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.ongrid-wt-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 500;
  color: #b0b0b0;
  white-space: nowrap;
}

.ongrid-wt-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(75, 193, 200, 0.12);
  border: 1.5px solid #4bc1c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #4bc1c8;
  flex-shrink: 0;
}

.ongrid-wt-line {
  flex: 1;
  min-width: 10px;
  max-width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.12);
}

.ongrid-quote-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.ongrid-quote-mark {
  font-family: 'Denton Test', 'Denton', 'Playfair Display', serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 0.8;
  margin-bottom: 10px;
  display: block;
}

.ongrid-quote-text {
  font-size: 14px;
  color: #e7e7e7;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

.ongrid-subheading {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Modal */
.ongrid-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.ongrid-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.ongrid-modal-box {
  background: #0f1214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  width: min(98vw, 1060px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: scale(0.98) translateY(10px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.22s ease;
}

.ongrid-modal-backdrop.open .ongrid-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.ongrid-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.ongrid-modal-header-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ongrid-modal-header-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ongrid-modal-htitle {
  font-size: 15px;
  font-weight: 600;
  color: #e7e7e7;
}

.ongrid-modal-hsub {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.ongrid-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #888;
  transition: background 0.15s, color 0.15s;
}

.ongrid-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #e7e7e7;
}

.ongrid-modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

/* Workflow diagram — original layout, toned-down palette */
.ongrid-wf {
  padding: 24px 28px 32px;
}

.ongrid-wf-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 22px;
}

.ongrid-wf-leg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.ongrid-wf-ldot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ongrid-wf-ldot--action { background: rgba(74, 196, 189, 0.55); }
.ongrid-wf-ldot--decision { background: rgba(180, 160, 120, 0.5); border-radius: 50%; }
.ongrid-wf-ldot--auto { background: rgba(140, 130, 170, 0.45); }
.ongrid-wf-ldot--manual { background: rgba(120, 120, 120, 0.45); }

.ongrid-wf-feature-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c5e8eb;
  padding: 3px 8px;
  border-radius: 100px;
  background: #152a2e;
  border: 1px solid rgba(74, 196, 189, 0.2);
}

.ongrid-wf-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.ongrid-wf-lane {
  width: 96px;
  flex-shrink: 0;
  padding-top: 10px;
}

.ongrid-wf-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-block;
  line-height: 1.35;
  color: #a8a8a8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ongrid-wf-node {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.ongrid-wf-node--action {
  border-left: 2px solid rgba(74, 196, 189, 0.45);
}

.ongrid-wf-node--decision {
  border-left: 2px solid rgba(180, 160, 120, 0.4);
  border-style: solid;
}

.ongrid-wf-node--auto {
  border-left: 2px solid rgba(140, 130, 170, 0.4);
}

.ongrid-wf-nh {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.ongrid-wf-nn {
  font-size: 10px;
  font-weight: 600;
  color: #6a9a96;
  min-width: 18px;
  flex-shrink: 0;
}

.ongrid-wf-nt {
  font-size: 13px;
  font-weight: 600;
  color: #e7e7e7;
  line-height: 1.35;
}

.ongrid-wf-nd {
  font-size: 12px;
  color: #999;
  line-height: 1.55;
  padding-left: 26px;
  margin-top: 2px;
}

.ongrid-wf-fb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(231, 231, 231, 0.95);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
  margin-left: 26px;
  margin-right: 4px;
  background: #152a2e;
  border: 1px solid rgba(74, 196, 189, 0.22);
  letter-spacing: 0.03em;
}

.ongrid-wf-fb::before {
  content: '✦';
  font-size: 8px;
  color: #4ac4bd;
  line-height: 1;
}

.ongrid-wf-fb--auto {
  background: #1a2430;
  border-color: rgba(140, 130, 170, 0.25);
  color: rgba(231, 231, 231, 0.9);
}

.ongrid-wf-fb--auto::before {
  content: '⚡';
  color: #9a94a8;
}

.ongrid-wf-arr {
  padding: 4px 0 4px 110px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #666;
  font-style: normal;
}

.ongrid-wf-arr-line {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ongrid-modal-body {
  padding: 24px 28px 32px;
}

/* --- LAV layout & section styles --- */


body[data-page="ongrid-project"] .lav-challenge-grid .lav-goal-card-icon {
  width: 42px;
  height: 46px;
  margin-bottom: 0;
}

body[data-page="ongrid-project"] .lav-case-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

body[data-page="ongrid-project"] .ongrid-hero-subtitle {
  line-height: 1.55;
  margin: 1px auto 36px;
  max-width: 800px;
}

body[data-page="ongrid-project"] .ongrid-body-meta {
  flex-wrap: wrap;
  gap: 32px 48px;
}

body[data-page="ongrid-project"] .lav-meta-item + .lav-meta-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

body[data-page="ongrid-project"] .lav-meta-item:first-child {
  border-left: none;
  padding-left: 0;
}

body[data-page="ongrid-project"] .lav-slabel {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  margin-bottom: 18px;
}

body[data-page="ongrid-project"] .lav-side-nav {
  gap: 4px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
}

body[data-page="ongrid-project"] .lav-design-decisions-heading {
  margin-top: 32px;
}

body[data-page="ongrid-project"] .ongrid-solution-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

body[data-page="ongrid-project"] .ongrid-solution-cards .ongrid-solution-card {
  margin-top: 0;
}

body[data-page="ongrid-project"] .ongrid-workflow-trigger {
  margin: 28px 0 0;
  width: 100%;
}

body[data-page="ongrid-project"] .lav-journey-map-wrap {
  margin-top: 28px;
}

body[data-page="ongrid-project"] .lav-audit-screens-wrap {
  margin-top: 20px;
  margin-bottom: 24px;
}

  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 48px;
}

.lav-workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.lav-workflow-step-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}

.lav-workflow-step-num {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.lav-workflow-step-card p {
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1.45;
  margin: 0;
}

.lav-goal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lav-goal-list li {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.65;
  padding: 4px 0 4px 16px;
  position: relative;
}

.lav-goal-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4bc1c8;
  font-size: 12px;
}

.lav-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lav-audit-bold {
  font-weight: 600;
  color: #e7e7e7 !important;
}

.lav-interview-card {
  margin-bottom: 10px;
}

.lav-interview-card-icon {
  height: auto;
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: contain;
}

.lav-interview-card-icon--verifiers {
  width: 70%;
}

.lav-interview-card-icon--ops {
  width: 40%;
}

.lav-interview-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.lav-interview-card p {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.55;
  margin: 0;
}

.lav-quotes-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lav-journey-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.lav-journey-stage {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 12px;
}

.lav-journey-stage-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.lav-journey-stage ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lav-journey-stage li {
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1.5;
  padding: 4px 0 4px 12px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lav-journey-stage li:last-child { border-bottom: none; }

.lav-journey-stage li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #4bc1c8;
}

.lav-emotions-row {
  margin-top: 12px;
  padding: 20px;
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.lav-emotions-row h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.lav-emotions-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.lav-emotions-list p {
  font-size: 12px;
  color: #b0b0b0;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.lav-problem-statement {
  margin-top: 28px;
  background: rgba(248, 113, 113, 0.08);
  border-left: 3px solid #f87171;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
}

.lav-problem-statement .lav-callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 4px;
}

.lav-problem-statement p {
  font-size: 14px;
  color: #e7e7e7;
  line-height: 1.6;
  margin: 0;
}

.lav-scenarios-note {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  font-style: italic;
  line-height: 1.55;
}

.lav-outcome-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.lav-outcome-list li {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.65;
  padding: 16px 0 16px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lav-outcome-list li:last-child { border-bottom: none; }

.lav-outcome-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: #4bc1c8;
}

.lav-goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.lav-goal-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
}

.lav-goal-card-icon {
  width: 66px;
  height: 66px;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
}

.lav-goal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4bc1c8;
  margin-bottom: 10px;
}

.lav-goal-text {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.65;
  margin: 0;
}

.lav-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lav-approach-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 18px;
}

.lav-approach-num {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #4bc1c8;
  margin-bottom: 12px;
}

.lav-approach-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.lav-approach-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.lav-approach-body {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.55;
  margin: 0;
}

.lav-research-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.lav-method-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lav-method-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 14px;
  color: #b0b0b0;
}

.lav-method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #4bc1c8;
  flex-shrink: 0;
}

.lav-audit-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 18px;
}

.lav-audit-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.lav-audit-card .lav-audit-list {
  margin: 0;
}

.lav-audit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.lav-audit-list li {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.65;
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lav-audit-list li:last-child { border-bottom: none; }

.lav-audit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f87171;
  font-size: 13px;
}

.lav-callout {
  margin-top: 24px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #0d1a1b 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(75, 193, 200, 0.25);
  border-left: 3px solid #4bc1c8;
  border-radius: 10px;
}

.lav-callout-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4bc1c8;
  margin-bottom: 8px;
  display: block;
}

.lav-callout p {
  font-size: 14px;
  color: #e7e7e7;
  line-height: 1.6;
  margin: 0;
}

.lav-quote-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  display: block;
}

.lav-persona-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 28px;
}

.lav-persona-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lav-persona-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(75, 193, 200, 0.15);
  border: 1px solid rgba(75, 193, 200, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.lav-persona-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lav-persona-name {
  font-family: 'Denton Test', 'Denton', 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.lav-persona-role {
  font-size: 14px;
  color: #b0b0b0;
}

.lav-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lav-persona-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.lav-persona-col p,
.lav-persona-col li {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.6;
}

.lav-persona-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lav-persona-col li {
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lav-persona-col li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #4bc1c8;
}

.lav-persona-quote {
  font-size: 12px;
  font-style: italic;
  color: #888;
  margin-top: 10px;
}

/* Journey map — interactive tabs */
.lav-journey-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.lav-journey-tab {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  font: inherit;
  color: inherit;
}

.lav-journey-tab:hover {
  border-color: rgba(75, 193, 200, 0.35);
}

.lav-journey-tab.is-active {
  border-color: #4bc1c8;
  background: rgba(75, 193, 200, 0.08);
}

.lav-journey-tab-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4bc1c8;
  display: block;
  margin-bottom: 4px;
}

.lav-journey-tab-num {
  font-size: 11px;
  color: #888;
}

.lav-journey-panel {
  margin-top: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-height: 120px;
}

.lav-journey-panel h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.lav-journey-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.lav-journey-panel li {
  font-size: 14px;
  color: #b0b0b0;
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.55;
}

.lav-journey-panel li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #4bc1c8;
}

.lav-journey-emotion {
  font-size: 13px;
  color: #888;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}

.lav-scenario-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.lav-scenario-image {
  min-width: 0;
}

.lav-scenario-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lav-scenario-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.lav-scenario-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.lav-scenario-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4bc1c8;
  flex-shrink: 0;
  margin-top: 6px;
}

.lav-scenario-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.lav-scenario-item p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.55;
  margin: 0;
}

.lav-flow-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  position: relative;
}

.lav-flow-steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 0;
  border-left: 2px dotted rgba(75, 193, 200, 0.45);
  z-index: 0;
}

.lav-flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  padding-bottom: 16px;
  z-index: 1;
}

.lav-flow-step:last-child {
  padding-bottom: 0;
}

.lav-flow-marker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lav-flow-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0a1214;
  border: 1px solid rgba(75, 193, 200, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.lav-flow-node-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lav-flow-step-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.lav-flow-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #4bc1c8;
  margin-bottom: 8px;
}

.lav-flow-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.35;
}

.lav-flow-step p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

.lav-design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.lav-design-card {
  background: linear-gradient(180deg, #05090a 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 18px;
}

.lav-design-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.lav-design-card p {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.55;
  margin: 0;
}

body[data-page="ongrid-project"] .problem-cards.ongrid-lav-problems {
  grid-template-columns: 1fr;
  min-height: 0;
}

body[data-page="ongrid-project"] .ongrid-lav-problems .problem-card {
  background: linear-gradient(180deg, #0d1a1b 0%, rgba(8, 14, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

body[data-page="ongrid-project"] .core-problem-box {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .lav-workflow-steps,
  .lav-journey-stages,
  .lav-emotions-list {
    grid-template-columns: 1fr 1fr;
  }

  .lav-challenge-grid {
    grid-template-columns: 1fr;
  }

  .lav-goals-grid,
  .lav-research-split,
  .lav-scenario-layout,
  .lav-persona-grid,
  .lav-design-grid {
    grid-template-columns: 1fr;
  }

  .lav-approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lav-journey-tabs {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page="ongrid-project"] .lav-meta-item + .lav-meta-item {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .lav-approach-grid {
    grid-template-columns: 1fr;
  }
}
