@charset "UTF-8";
:root {
  --cream:#f5f1ea;
  --cream-2:#ece6db;
  --ink:#0d0f12;
  --ink-2:#1a1d22;
  --muted:#6b6b66;
  --line:rgba(13, 15, 18, 0.12);
  --lime:#c8f25c;
  --lime-deep:#9fd031;
}

/* ============================================================
   WebPies · pricing.css — tier cards + comparison table
   ============================================================ */
/* ---- tier cards ---- */
.tier {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tier:hover {
  transform: translateY(-5px);
}

.tier-hl:hover {
  box-shadow: 0 26px 60px -28px rgba(13, 15, 18, 0.6);
}

.tier-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.tier-badge.out {
  box-shadow: inset 0 0 0 1px rgba(13, 15, 18, 0.22);
  color: var(--ink);
}

.tier-badge.out-light {
  box-shadow: inset 0 0 0 1px rgba(245, 241, 234, 0.32);
  color: var(--cream);
}

.tier-badge.fill {
  background: var(--lime);
  color: #0d0f12;
}

.tier .feat-off {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* ---- comparison table ---- */
.cmp-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.cmp {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  min-width: 880px;
  background: var(--cream);
}

.cmp > div {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.cmp .cmp-h {
  font-family: "Instrument Serif", serif;
  font-size: 21px;
  line-height: 1.05;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3px;
  background: var(--cream-2);
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.cmp .cmp-h.feat {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.cmp .cmp-h .nm {
  white-space: nowrap;
}

.cmp .cmp-h .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.cmp .cmp-h .sub .cmp-sub-strike {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 2px;
}

.cmp .cmp-h .sub .cmp-sub-current {
  font-weight: 700;
  color: var(--ink);
}

html.theme-dark .cmp .cmp-h .sub .cmp-sub-current {
  color: #f5f1ea;
}

.cmp .cmp-h.hl .sub .cmp-sub-current {
  color: #0d0f12;
}

.cmp .cmp-cat {
  grid-column: 1/-1;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream-2);
  padding: 13px 20px;
}

.cmp .feat-label {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
}

.cmp .val {
  justify-content: center;
  text-align: center;
  font-size: 13.5px;
  color: #3a3c40;
}

.cmp .val.muted-txt {
  color: var(--muted);
  font-size: 12.5px;
}

.cmp .ck {
  color: var(--lime-deep);
  font-size: 17px;
  line-height: 1;
}

/* dark-mode: these surfaces stay LIGHT (fixed lime tints), so force dark text;
   and the hardcoded-grey comparison values need a light tone on the dark table. */
html.theme-dark .cmp .val {
  color: #c7c3ba;
}

html.theme-dark .cmp .cmp-h.hl {
  color: #0d0f12;
}

html.theme-dark .cmp .cmp-h.hl .sub {
  color: rgba(13, 15, 18, 0.55);
}

.cmp .no {
  color: #cbc6bc;
  font-size: 16px;
}

/* highlighted Business column */
.cmp .hl {
  background: rgba(200, 242, 92, 0.13);
}

.cmp .cmp-h.hl {
  background: #edf6d4;
}

.cmp .cmp-h.hl .nm {
  color: #0d0f12;
}

.cmp .cmp-row-last > div {
  border-bottom: 0;
}

.cmp .cmp-btn-cell {
  border-bottom: 0 !important;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp .cmp-btn-cell.feat {
  background: transparent;
}

.cmp-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  line-height: 1.2;
}

.cmp-action-btn.btn-cmp-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cmp-action-btn.btn-cmp-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

html.theme-dark .cmp-action-btn.btn-cmp-outline {
  color: #f5f1ea;
  border-color: rgba(255, 255, 255, 0.16);
}

html.theme-dark .cmp-action-btn.btn-cmp-outline:hover {
  background: var(--lime);
  color: #0d0f12;
  border-color: var(--lime);
}

@media (max-width: 640px) {
  .cmp {
    min-width: 760px;
  }
  .cmp > div {
    padding: 13px 14px;
  }
  .cmp .cmp-h {
    font-size: 18px;
  }
  .cmp .feat-label {
    font-size: 13.5px;
  }
}


/* ---- billing switcher ---- */
.pricing-billing-btn {
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  border: none;
}
.pricing-billing-btn.active {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 2px 10px rgba(13, 15, 18, 0.12);
}
html.theme-dark .pricing-billing-btn.active {
  background: var(--lime);
  color: #0d0f12;
}

.tier-regular-price {
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

/* ---- tier installment card (premium fintech UI) ---- */
.tier-installment-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 13px 14px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.tier-installment-card .inst-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.tier-installment-card .inst-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.tier-installment-card .inst-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
}

.tier-installment-card .inst-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tier-installment-card .inst-zero-apr {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 1.5px 6px;
  border-radius: 9999px;
  white-space: nowrap;
}

.tier-installment-card .inst-count-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  flex-shrink: 0;
  white-space: nowrap;
}

.tier-installment-card .inst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tier-installment-card .inst-cell-today,
.tier-installment-card .inst-cell-later {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  min-height: 54px;
  box-sizing: border-box;
}

.tier-installment-card .inst-cell-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
  margin-bottom: 3px;
  white-space: nowrap;
}

.tier-installment-card .inst-dot {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.tier-installment-card .inst-cell-val {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.tier-installment-card .inst-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  line-height: 1.25;
}

.tier-installment-card .inst-footer-schedule {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tier-installment-card .inst-footer-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Light / Cream Tier State */
.tier-inst-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 240, 255, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 4px 16px -2px rgba(139, 92, 246, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.95);
  color: #1e1b4b;
}

.tier-inst-light .inst-icon-badge {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.tier-inst-light .inst-title {
  color: #5b21b6;
}

.tier-inst-light .inst-zero-apr {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.tier-inst-light .inst-count-pill {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.tier-inst-light .inst-cell-today {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.04) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.tier-inst-light .inst-cell-today .inst-cell-label {
  color: #6d28d9;
}

.tier-inst-light .inst-cell-today .inst-dot {
  background: #7c3aed;
  box-shadow: 0 0 6px rgba(124, 58, 237, 0.5);
}

.tier-inst-light .inst-cell-today .inst-cell-val {
  color: #4c1d95;
}

.tier-inst-light .inst-cell-later {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 15, 18, 0.09);
}

.tier-inst-light .inst-cell-later .inst-cell-label {
  color: #475569;
}

.tier-inst-light .inst-cell-later .inst-cell-val {
  color: #0f172a;
}

.tier-inst-light .inst-footer {
  border-top-color: rgba(139, 92, 246, 0.14);
  color: #475569;
}

.tier-inst-light .inst-guarantee-text {
  color: #6d28d9;
}

/* Dark Tier State (Highlight Tier or html.theme-dark) */
.tier-inst-dark,
html.theme-dark .tier-inst-light {
  background: linear-gradient(135deg, rgba(28, 22, 48, 0.82) 0%, rgba(16, 13, 28, 0.92) 100%);
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  color: #f5f3ff;
}

.tier-inst-dark .inst-icon-badge,
html.theme-dark .tier-inst-light .inst-icon-badge {
  background: rgba(167, 139, 250, 0.18);
  color: #ddd6fe;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.tier-inst-dark .inst-title,
html.theme-dark .tier-inst-light .inst-title {
  color: #e9d5ff;
}

.tier-inst-dark .inst-zero-apr,
html.theme-dark .tier-inst-light .inst-zero-apr {
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.tier-inst-dark .inst-count-pill,
html.theme-dark .tier-inst-light .inst-count-pill {
  background: rgba(167, 139, 250, 0.18);
  color: #ddd6fe;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.tier-inst-dark .inst-cell-today,
html.theme-dark .tier-inst-light .inst-cell-today {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22) 0%, rgba(124, 58, 237, 0.12) 100%);
  border: 1px solid rgba(167, 139, 250, 0.32);
}

.tier-inst-dark .inst-cell-today .inst-cell-label,
html.theme-dark .tier-inst-light .inst-cell-today .inst-cell-label {
  color: #c4b5fd;
}

.tier-inst-dark .inst-cell-today .inst-dot,
html.theme-dark .tier-inst-light .inst-cell-today .inst-dot {
  background: #a78bfa;
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.7);
}

.tier-inst-dark .inst-cell-today .inst-cell-val,
html.theme-dark .tier-inst-light .inst-cell-today .inst-cell-val {
  color: #ffffff;
}

.tier-inst-dark .inst-cell-later,
html.theme-dark .tier-inst-light .inst-cell-later {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-inst-dark .inst-cell-later .inst-cell-label,
html.theme-dark .tier-inst-light .inst-cell-later .inst-cell-label {
  color: #94a3b8;
}

.tier-inst-dark .inst-cell-later .inst-cell-val,
html.theme-dark .tier-inst-light .inst-cell-later .inst-cell-val {
  color: #f1f5f9;
}

.tier-inst-dark .inst-footer,
html.theme-dark .tier-inst-light .inst-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.tier-inst-dark .inst-guarantee-text,
html.theme-dark .tier-inst-light .inst-guarantee-text {
  color: #c4b5fd;
}


