/* Built UI inside phone frames (no screenshot PNGs) */

.phone-iphone .phone-screen,
.phone-android .phone-screen {
  background: var(--page);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 0;
}

/* Match real handset screen proportions (fixes narrow/tall distortion) */
.phone-iphone .phone-screen {
  aspect-ratio: 390 / 844;
}

.phone-android .phone-screen {
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
}

/* ── Android status + nav ── */
.android-header {
  background: var(--eucalyptus);
  flex-shrink: 0;
}

.android-status-wrap {
  position: relative;
  padding: 8px 14px 6px;
}

.android-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 18px;
}

.android-camera-hole {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #0A0A0A;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}

.android-signal {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}
.android-signal span {
  width: 3px;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}
.android-signal span:nth-child(1) { height: 35%; }
.android-signal span:nth-child(2) { height: 55%; }
.android-signal span:nth-child(3) { height: 75%; }
.android-signal span:nth-child(4) { height: 100%; }

.android-batt {
  width: 20px;
  height: 10px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  padding: 1.5px;
  display: flex;
  align-items: center;
}
.android-batt-fill {
  width: 72%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}

.android-app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}

.android-header .ios-time {
  color: #fff;
}

.android-nav-gesture {
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page);
  flex-shrink: 0;
}

.android-nav-gesture span {
  width: 72px;
  height: 4px;
  background: var(--sage);
  border-radius: 100px;
  opacity: 0.28;
}

/* ── iOS status + nav (journal / insights / settings) ── */
.iphone-header {
  background: var(--eucalyptus);
  flex-shrink: 0;
}

.iphone-status-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 4px;
}

.iphone-dynamic-island {
  width: 88px;
  height: 26px;
  background: #0A0A0A;
  border-radius: 100px;
  justify-self: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.iphone-app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}

.iphone-nav-spacer { width: 20px; flex-shrink: 0; }

.app-nav-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.app-nav-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.ios-time {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ios-icons {
  display: flex;
  align-items: center;
  gap: 3.5px;
}

.ios-signal {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 9px;
}
.ios-signal span {
  width: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}
.ios-signal span:nth-child(1) { height: 35%; }
.ios-signal span:nth-child(2) { height: 60%; }
.ios-signal span:nth-child(3) { height: 80%; }
.ios-signal span:nth-child(4) { height: 100%; }

.ios-batt {
  width: 18px;
  height: 9px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding: 1.5px;
  position: relative;
}
.ios-batt::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 0 1px 1px 0;
}
.ios-batt-fill {
  width: 78%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-radius: 1px;
}

.iphone-home-bar {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--page);
  flex-shrink: 0;
}
.iphone-home-bar span {
  width: 108px;
  height: 4px;
  background: var(--sage);
  border-radius: 100px;
  opacity: 0.22;
}

/* ── Scrollable body ── */
.phone-body {
  flex: 1;
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--page);
}

.screen-scroll {
  flex: 1;
  overflow: hidden;
  background: var(--page);
  padding: 10px 10px 46px;
}

.screen-scroll--plain {
  padding: 14px 14px 8px;
}

.screen-scroll--settings {
  padding-top: 8px;
}

/* Journal list */
.search-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cloud-white);
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
  padding: 7px 10px;
  margin-bottom: 8px;
}

.search-icon {
  display: inline-flex;
  line-height: 0;
  opacity: 0.55;
}

.search-placeholder {
  font-size: 11px;
  color: var(--border);
  font-style: italic;
}

.session-row {
  display: flex;
  align-items: stretch;
  background: var(--cloud-white);
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.row-stripe {
  width: 5px;
  flex-shrink: 0;
}
.stripe-cedar { background: var(--cedarwood); }
.stripe-eucalyptus { background: var(--eucalyptus); }
.stripe-split {
  background: linear-gradient(to bottom, var(--cedarwood) 50%, var(--eucalyptus) 50%);
}

.row-body {
  flex: 1;
  padding: 9px 10px 8px;
  min-width: 0;
}

.row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.row-date {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--sage);
}

.row-occasion {
  font-size: 11px;
  color: var(--sage-light);
  font-style: italic;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-preview {
  font-size: 11px;
  color: var(--sage);
  line-height: 1.35;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.row-chip {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  border: none;
}
.chip-cedar {
  background: rgba(166,123,91,0.12);
  color: var(--cedarwood);
}
.chip-eucalyptus {
  background: rgba(130,144,121,0.15);
  color: var(--eucalyptus-dk);
}

.row-time {
  font-size: 9.5px;
  color: var(--sage-light);
  margin-left: auto;
  opacity: 0.75;
}

.leaf-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 0;
}

.fab-dot {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: var(--cedarwood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 4px 14px rgba(166,123,91,0.4);
}

/* Tab bar */
.app-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 4px 12px;
  background: var(--page);
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tab-icon {
  display: flex;
  line-height: 0;
}

.tab-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--border);
}

.tab:not(.active) { opacity: 0.5; }

/* ── Edit session ── */
.edit-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--page);
}

.edit-sheet-header {
  display: flex;
  flex-direction: column;
  background: var(--eucalyptus);
  flex-shrink: 0;
}

.modal-status--iphone .iphone-status-row {
  padding: 10px 16px 4px;
}

.modal-status--android {
  position: relative;
  padding: 8px 14px 4px;
}

.edit-sheet-header .modal-status--iphone .ios-time,
.edit-sheet-header .modal-status--android .ios-time {
  color: #fff;
}

.edit-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 12px;
}

.edit-cancel {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  min-width: 52px;
}

.edit-header-center {
  flex: 1;
  text-align: center;
  padding: 0 6px;
}

.edit-header-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.edit-header-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 3px;
}

.edit-save {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--cedarwood);
  padding: 7px 14px;
  border-radius: 20px;
  min-width: 56px;
  text-align: center;
}

.edit-scroll {
  flex: 1;
  overflow: hidden;
  padding: 10px 12px 16px;
}

.section-heading {
  font-size: 10px;
  font-weight: 700;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 8px 0 6px;
}

.mock-input {
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
  padding: 9px 11px;
  font-size: 12px;
  color: var(--sage);
  background: var(--cloud-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.mock-input--tall {
  min-height: 72px;
  font-size: 11px;
  line-height: 1.45;
}

.mood-hint {
  font-size: 10px;
  color: var(--sage-light);
  margin: -4px 0 8px;
}

.mood-row {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  padding-bottom: 2px;
}

.mood-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 20px;
  border: none;
  background: var(--cloud-white);
  box-shadow: 0 1px 3px rgba(78,89,69,0.06);
  font-size: 11px;
  font-weight: 600;
  color: var(--sage-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.mood-chip--active {
  background: rgba(166,123,91,0.22);
  box-shadow: none;
  color: #5c4030;
}

.mood-chip--super {
  background: rgba(201,162,39,0.12);
  box-shadow: 0 0 0 2px #c9a227;
}

.mood-star {
  font-size: 10px;
  color: #b8860b;
  font-weight: 700;
}

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.product-card--cedar {
  box-shadow: 0 1px 6px rgba(166,123,91,0.12);
}

.product-card--cannabis {
  box-shadow: 0 1px 6px rgba(130,144,121,0.14);
}

.product-type-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
  align-self: flex-start;
}

.product-type-chip--cedar {
  background: rgba(166,123,91,0.15);
  color: var(--cedarwood);
}

.product-type-chip--cannabis {
  background: rgba(130,144,121,0.15);
  color: var(--eucalyptus-dk);
}

.product-card-body { flex: 1; min-width: 0; }

.product-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1.2;
}

.product-card-sub {
  font-size: 10px;
  color: var(--sage-light);
  margin-top: 3px;
  line-height: 1.35;
}

.product-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.again-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.again-dot--yes { background: var(--eucalyptus); }

.edit-rating-wrap {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.photo-dashed {
  border: none;
  border-radius: 10px;
  background: var(--cloud-white);
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--cedarwood);
  font-size: 12px;
  font-weight: 600;
}

/* ── Insights ── */
.screen-headline {
  font-size: 20px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 4px;
  line-height: 1.2;
}

.screen-sub {
  font-size: 12px;
  color: var(--sage-light);
  margin-bottom: 14px;
  line-height: 1.4;
}

.stat-card {
  background: var(--cloud-white);
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.stat-card--half {
  flex: 1;
  margin-bottom: 0;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--sage-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1.1;
}

.stat-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-light);
}

.past-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: none;
}

.past-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 3px;
}

.past-muted {
  font-size: 11px;
  color: var(--sage-light);
  line-height: 1.4;
}

/* ── Settings ── */
.settings-block { margin-bottom: 14px; }

.settings-block-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--sage-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 6px 4px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--cloud-white);
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
  padding: 10px 12px;
  margin-bottom: 6px;
  font-size: 12px;
}

.settings-row-left,
.settings-row-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.settings-row-left {
  font-weight: 500;
  color: var(--sage);
  min-width: 0;
}

.settings-row-right {
  font-size: 11px;
  color: var(--sage-light);
  flex-shrink: 0;
}

.settings-delete {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: rgba(158,74,71,0.06);
}

.settings-delete-icon {
  display: flex;
  line-height: 0;
}

.settings-delete-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: #9e4a47;
}

.settings-delete-text small {
  font-size: 10px;
  font-weight: 400;
  color: var(--sage-light);
}

.mock-switch {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: rgba(78,89,69,0.38);
  position: relative;
  flex-shrink: 0;
}

.mock-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: left 0.15s ease;
}

.mock-switch--on {
  background: var(--eucalyptus);
}

.mock-switch--on::after {
  left: 20px;
}

/* ── PIN lock modal ── */
.pin-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--page);
}

.pin-modal-header {
  display: flex;
  flex-direction: column;
  border-bottom: none;
  flex-shrink: 0;
}

.pin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 12px;
}

.pin-modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
}

.pin-modal-close {
  display: flex;
  line-height: 0;
}

.pin-content {
  flex: 1;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pin-shield {
  margin-bottom: 14px;
  line-height: 0;
}

.pin-prompt {
  font-size: 17px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 8px;
}

.pin-sub {
  font-size: 11px;
  color: var(--sage-light);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 220px;
}

.pin-length-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 18px;
}

.pin-length-card {
  flex: 1;
  background: var(--cloud-white);
  border: none;
  border-radius: 10px;
  padding: 14px 8px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.pin-length-card--selected {
  background: rgba(130,144,121,0.08);
  box-shadow: 0 0 0 2px var(--eucalyptus);
}

.pin-length-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 4px;
}

.pin-length-card--selected .pin-length-title {
  color: var(--eucalyptus);
}

.pin-length-desc {
  font-size: 10px;
  color: var(--sage-light);
}

.pin-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: var(--eucalyptus);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  margin-top: auto;
}

.mock-error {
  padding: 24px;
  text-align: center;
  color: var(--sage-light);
}

/* ── Session detail (read-only) ── */
.detail-screen {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--page);
}

.detail-status {
  flex-shrink: 0;
  background: var(--page);
  padding: 10px 14px 4px;
}

.detail-status--android {
  position: relative;
  padding: 8px 14px 6px;
}

.detail-status .iphone-status-row {
  padding: 0;
}

.detail-ios-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -0.02em;
}

.detail-signal span {
  background: var(--sage);
  opacity: 0.7;
}

.detail-batt {
  border-color: rgba(78,89,69,0.4);
}

.detail-batt .ios-batt-fill,
.detail-batt .android-batt-fill {
  background: var(--sage);
  opacity: 0.75;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 10px;
  background: var(--page);
  flex-shrink: 0;
}

.detail-back {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cloud-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 1px 4px rgba(78,89,69,0.1);
  flex-shrink: 0;
}

.detail-nav-title {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-nav-spacer {
  width: 34px;
  flex-shrink: 0;
}

.detail-scroll {
  flex: 1;
  overflow: hidden;
  padding: 0 10px 8px;
}

.detail-hero-card {
  background: var(--cloud-white);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
  text-align: center;
}

.detail-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--sage);
}

.detail-meta-item,
.detail-meta-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.detail-meta-time {
  background: rgba(130,144,121,0.1);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--sage-light);
}

.detail-hero-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  line-height: 0;
}

.leaf-rating--multi {
  gap: 3px;
}

.detail-hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--sage-light);
  margin-bottom: 8px;
}

.detail-mood-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.detail-mood-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--sage);
  background: rgba(130,144,121,0.12);
  padding: 4px 10px;
  border-radius: 14px;
}

.detail-section-card {
  background: var(--cloud-white);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.detail-section-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cedarwood);
  line-height: 1;
}

.detail-section-head--standalone {
  margin-bottom: 6px;
}

.detail-journal-body {
  font-size: 11px;
  line-height: 1.5;
  color: var(--sage);
}

.detail-product-card {
  display: flex;
  align-items: stretch;
  background: var(--cloud-white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.detail-product-stripe {
  width: 4px;
  flex-shrink: 0;
  background: var(--eucalyptus);
}

.detail-product-body {
  flex: 1;
  padding: 10px;
  min-width: 0;
}

.detail-product-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 3px;
}

.detail-product-line {
  font-size: 10px;
  color: var(--sage-light);
  margin-bottom: 2px;
}

.detail-product-line--icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.detail-use-log {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.detail-use-log-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 4px;
}

.detail-use-log-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--sage-light);
}

.detail-use-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--eucalyptus);
  flex-shrink: 0;
}

.detail-insight-nudge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--cloud-white);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(78,89,69,0.06);
}

.detail-insight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(130,144,121,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.detail-insight-nudge p {
  font-size: 10px;
  line-height: 1.45;
  color: var(--sage-light);
  margin: 0;
}
