/* prototype.css - additive styles for the expanded practice.
   Reuses the base design tokens from style.css; no originals modified. */

/* large monospace price */
.price-lg {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin: 4px 0 2px;
}
.price-lg .per { font-size: 0.82rem; color: var(--text-dim); font-weight: 600; }
.price-from { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* feature list inside a card */
.feature-list { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '>';
  position: absolute; left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* highlighted / recommended card */
.card-featured {
  border-color: var(--accent-dim);
  box-shadow: 0 0 34px -14px rgba(0, 255, 163, 0.55);
  position: relative;
}
.ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04160f;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

/* pathway / routing cards on the homepage */
.path-icon {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--accent);
  border: 1px solid var(--panel-border);
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  margin-bottom: 18px;
}

/* honest-recommendation / trust note */
.note-block {
  margin-top: 40px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-left: 2px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 820px;
}
.note-block p { color: var(--text-dim); font-size: 0.92rem; }
.note-block strong { color: var(--text); }

/* section variant background so alternating sections read cleanly */
.services-alt { background: var(--bg-alt); }

/* identity card (about page) - privacy-safe, no identifying data */
.id-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 12%, rgba(0, 255, 163, 0.12), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 10px),
    var(--panel);
  padding: 24px 24px 26px;
  font-family: var(--font-mono);
}
.id-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.id-avatar {
  width: 46px; height: 46px; border-radius: 8px;
  border: 1px solid var(--accent-dim);
  background: rgba(0, 255, 163, 0.06);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  flex-shrink: 0;
}
.id-handle { color: var(--text); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.id-handle .b { color: var(--accent); }
.id-role { color: var(--text-dim); font-size: 0.74rem; margin-top: 2px; }
.id-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0, 255, 163, 0.1);
  border: 1px solid var(--accent-dim);
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap;
}
.id-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px 2px var(--accent); }
.id-fields { display: flex; flex-direction: column; margin: 0; }
.id-fields li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--panel-border);
  font-size: 0.8rem;
}
.id-fields li:last-child { border-bottom: none; }
.id-fields .k { color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.66rem; }
.id-fields .v { color: var(--text); text-align: right; }
.id-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.id-tags span {
  font-size: 0.66rem; color: var(--accent-2);
  border: 1px solid var(--panel-border);
  padding: 4px 10px; border-radius: 20px;
}

/* client dashboard rows */
.dash-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--panel-border);
}
.dash-row:last-child { border-bottom: none; }
.dash-title { color: var(--text); font-weight: 700; font-size: 0.95rem; }
.dash-meta { color: var(--text-dim); font-size: 0.8rem; font-family: var(--font-mono); margin-top: 5px; line-height: 1.5; }
.dash-empty { color: var(--text-dim); font-size: 0.92rem; }
.dash-empty a { color: var(--accent); text-decoration: underline; }
.pill {
  font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 9px; border-radius: 20px;
  border: 1px solid var(--panel-border); color: var(--text-dim); white-space: nowrap;
}
.pill.ok { color: var(--accent); border-color: var(--accent-dim); background: rgba(0, 255, 163, 0.1); }

/* legal callout box */
.legal-callout {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-left: 2px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
}
.legal-callout p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }
.legal-callout strong { color: var(--text); }

/* authorization form checkboxes */
.check-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.check-row input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--accent); cursor: pointer;
}
.check-row label { font-family: var(--font-sans); color: var(--text-dim); font-size: 0.9rem; line-height: 1.5; }

/* inline links in disclaimers / page-header copy */
.tools-disclaimer a, .page-header p a, .note-block a, .legal-callout a { color: var(--accent); text-decoration: underline; }

/* product screenshot */
.app-shot {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #14161c;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8);
}
.app-shot img { width: 100%; display: block; }
.shot-caption {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 10px;
  text-align: center;
}
.card-shot {
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  overflow: hidden;
  margin: 6px 0 16px;
  display: block;
}
.card-shot img { width: 100%; display: block; }

/* version / meta line */
.meta-line {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.meta-line .sep { color: var(--panel-border); margin: 0 8px; }

/* redline detail layout */
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } }
.buy-card {
  background: var(--panel);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 0 34px -16px rgba(0, 255, 163, 0.5);
  position: sticky;
  top: 90px;
}
.buy-price { font-family: var(--font-mono); font-size: 2rem; font-weight: 800; color: var(--accent); }
.buy-price .once { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; display: block; margin-top: 2px; }

/* credibility stat strip (about page) */
.stat-strip { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.stat {
  flex: 1; min-width: 150px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.stat .n { font-family: var(--font-mono); font-size: 1.35rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.stat .l { color: var(--text-dim); font-size: 0.8rem; margin-top: 5px; }

/* honest note under the recommended-tools strip */
.trust-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.6;
}
