/* ============================================================
   ROBIOS PRICING: standalone page, tokens only
   ============================================================ */

.pricing-body { background: var(--bg-base); }
.pricing-nav-label { color: var(--text-muted); font-weight: 500; font-size: 13px; }

.pricing-main { padding-bottom: 64px; }

/* ---------- hero ---------- */
.pricing-hero {
  padding: 48px 0 28px;
  max-width: 720px;
}
.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: 1.05;
}
.pricing-sub {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--accent);
  letter-spacing: var(--ls-display);
}
.pricing-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- plan cards ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.plan {
  display: flex; flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--dur-med) var(--ease-pop),
              border-color var(--dur-fast) var(--ease-ui);
}
.plan:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.14); }
.plan-live {
  border-color: var(--accent-24);
  box-shadow: var(--inset-highlight), 0 0 0 1px var(--accent-24);
  background:
    linear-gradient(180deg, var(--accent-05) 0%, rgba(209, 254, 23, 0) 40%),
    var(--bg-card);
}
.plan-live:hover { border-color: var(--accent-glow); }

.plan-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: var(--fs-card-title); font-weight: var(--fw-card-title);
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
}
.plan-price {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: 1.1;
}
.plan-live .plan-price { color: var(--accent); }
.plan-price-unit {
  font-size: 15px; font-weight: 500;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
}
.plan-tag {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-feats {
  list-style: none;
  margin: 16px 0 20px;
  display: grid; gap: 8px;
  flex: 1;
}
.plan-feats li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.plan-feats li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-size: 13px; font-weight: 700;
}
.plan:not(.plan-live) .plan-feats li::before { color: var(--text-muted); }

.plan-cta { width: 100%; }
.plan-fine {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ---------- comparison table ---------- */
.compare { margin-top: 40px; }
.compare-legend {
  font-size: 12px;
  color: var(--text-muted);
}
.compare-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  color: var(--text-muted);
  background: var(--bg-elevated);
}
.compare-table thead th:nth-child(2) { color: var(--accent); }
.compare-table tbody th {
  font-weight: 500;
  color: var(--text-primary);
}
.compare-table tbody td { color: var(--text-secondary); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: var(--bg-white-5); }

.cmp-yes { color: var(--accent); font-weight: 700; }
.cmp-tge {
  display: inline-flex; align-items: center;
  background: var(--bg-white-5);
  color: var(--text-muted);
  border-radius: var(--radius-badge);
  font-size: 11px; font-weight: 600;
  padding: 2px 7px;
}
.cmp-no { color: var(--text-faint); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; max-width: 760px; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--grid-gap);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 44px 14px 16px;
  position: relative;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: var(--ls-display);
  transition: color var(--dur-fast) var(--ease-ui);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 16px; font-weight: 400;
  transition: transform var(--dur-fast) var(--ease-pop),
              color var(--dur-fast) var(--ease-ui);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:hover::after { color: var(--accent); }
.faq-item[open] summary::after {
  content: "\00d7";
  color: var(--accent);
}
.faq-item p {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

/* ---------- footer ---------- */
.pricing-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 28px;
}
.pricing-foot p {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .pricing-hero h1 { font-size: 38px; }
}
@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; }
  .pricing-hero { padding-top: 32px; }
  .pricing-hero h1 { font-size: 32px; }
  .compare-table { font-size: 13px; }
}
@media (max-width: 375px) {
  .pricing-hero h1 { font-size: 28px; }
  .plan { padding: 16px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
