/* SOLMIIR — English page supplement.
   Extends assets/404-relaunch.css. Same tokens (--ink/--paper/--lime/--mono),
   no new visual language: flat cards, mono meta, lime for the featured tier. */

.pricing { background: #e8e8e1; }
.pricing + .pricing { padding-top: 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.price-card {
  background: var(--paper);
  border: 1px solid rgba(16, 17, 18, .28);
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--ink);
  color: #f7f6f1;
  border-color: var(--ink);
}

.price-card .tier {
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  color: #698500;
  margin: 0 0 18px;
}

.price-card.featured .tier { color: var(--lime); }

.price-card .amount {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.075em;
  margin: 0;
}

.price-card .amount small {
  font: 400 12px var(--mono);
  letter-spacing: -.01em;
  display: block;
  margin-top: 12px;
  color: #696963;
}

.price-card.featured .amount small { color: #b8b8b1; }

.price-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.price-card li {
  font-size: 14px;
  line-height: 1.5;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 17, 18, .22);
}

.price-card.featured li { border-top-color: rgba(247, 246, 241, .22); }

.price-card li:last-child { border-bottom: 1px solid rgba(16, 17, 18, .22); }
.price-card.featured li:last-child { border-bottom-color: rgba(247, 246, 241, .22); }

.price-card li.off { color: #8d8d86; }
.price-card li.off:before { content: '— '; font-family: var(--mono); }
.price-card li:not(.off):before { content: '– '; font-family: var(--mono); color: #557900; }
.price-card.featured li:not(.off):before { color: var(--lime); }

.price-note {
  font-size: 14px;
  line-height: 1.7;
  margin: 26px 0 0;
  max-width: 720px;
}

.price-note b { font-weight: 700; }

.price-tbd .amount { color: #8d8d86; }
.price-tbd .amount small { color: #8d8d86; }

.addon-box {
  margin-top: 16px;
  padding: 26px 24px;
  background: #d4ff69;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.addon-box h3 {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.06em;
  margin: 0 0 10px;
}

.addon-box p { font-size: 14px; line-height: 1.6; margin: 0; max-width: 620px; }
.addon-box .amount-inline { font-size: 40px; letter-spacing: -.07em; white-space: nowrap; }

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  font: 500 11px var(--mono);
  letter-spacing: .06em;
  margin-left: 22px;
}

.lang-switch a { color: rgba(16, 17, 18, .45); text-decoration: none; }
.lang-switch a[aria-current='true'] { color: var(--ink); }
.lang-switch span { color: rgba(16, 17, 18, .3); }

.header-right { display: flex; align-items: center; }

.limits { background: var(--paper); }
.limits .limits-body { max-width: 760px; }
.limits p { font-size: 15px; line-height: 1.8; margin: 0 0 16px; }
.limits p:last-child { margin-bottom: 0; }
.limits strong { font-weight: 700; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .addon-box { display: block; }
  .addon-box .amount-inline { display: block; margin-top: 16px; }
}

@media (max-width: 800px) {
  .lang-switch { margin-left: 12px; }
  .price-card { padding: 22px 18px; }
  .price-card .amount { font-size: 38px; }
}

.price-card .amount { font-size: clamp(24px, 3vw, 38px); overflow-wrap: anywhere; }
.price-card .button { margin-top: auto; }
