/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-hero {
  padding-top: 160px;
  padding-bottom: clamp(60px, 8vw, 100px);
  text-align: center;
}
.pricing-hero .eyebrow { display: block; margin-bottom: 28px; }
.pricing-hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.pricing-hero h1 em { font-style: italic; color: var(--gold); }
.pricing-hero .lead {
  max-width: 540px;
  margin: 28px auto 0;
  color: var(--fg-soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
}

.billing-toggle {
  display: inline-flex;
  margin-top: 40px;
  padding: 4px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.billing-toggle button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all .2s var(--ease);
}
.billing-toggle button.active {
  background: var(--fg);
  color: var(--ink);
}
.billing-toggle .save {
  margin-left: 6px;
  color: var(--gold);
  font-size: 9px;
}

/* ---- Tier columns ---- */
.tiers {
  padding-bottom: clamp(80px, 10vw, 140px);
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 980px) { .tiers-grid { grid-template-columns: 1fr; } }

.tier-card {
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
  background: var(--ink-2);
  position: relative;
}
.tier-card + .tier-card {
  border-left: 1px solid var(--rule-strong);
}
@media (max-width: 980px) {
  .tier-card + .tier-card { border-left: none; border-top: 1px solid var(--rule-strong); }
}
.tier-card.featured {
  background: var(--ink);
  border-color: var(--gold);
}
.tier-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -1px; right: 24px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  border-radius: 0 0 4px 4px;
}

.tier-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.tier-card.featured .tier-name { color: var(--gold); }
.tier-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.tier-title em { font-style: italic; color: var(--gold); }
.tier-price {
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.tier-price .amt {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.tier-price .amt em { font-style: italic; color: var(--gold); }
.tier-price .per {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.tier-desc {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.55;
}
.tier-cta {
  margin-top: 8px;
  align-self: stretch;
  justify-content: center;
}
.tier-list {
  list-style: none;
  display: flex; flex-direction: column;
  margin-top: 12px;
  border-top: 1px solid var(--rule);
}
.tier-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 13px;
  color: var(--fg);
  line-height: 1.5;
}
.tier-list li .check {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  line-height: 1.4;
}
.tier-list li.muted-row {
  color: var(--fg-mute);
}
.tier-list li.muted-row .check {
  color: var(--fg-faint);
}

/* ---- Comparison matrix ---- */
.compare {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--rule);
}
.compare-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
}
.compare-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.compare-head h2 em { font-style: italic; color: var(--gold); }
.compare-head .body {
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 480px;
}
@media (max-width: 880px) {
  .compare-head { grid-template-columns: 1fr; gap: 16px; }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
.compare-table thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-top: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-strong);
}
.compare-table thead th.featured-col {
  color: var(--gold);
}
.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center;
  width: 18%;
}
.compare-table td.feat-col {
  background: rgba(198, 154, 91, 0.04);
}
.compare-table tbody tr:first-child td { padding-top: 24px; }
.compare-table .row-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--fg);
  line-height: 1.2;
}
.compare-table .row-sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--fg-mute);
  margin-top: 4px;
  line-height: 1.45;
}
.compare-table .yes {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 14px;
}
.compare-table .no {
  color: var(--fg-faint);
  font-family: var(--mono);
}
.compare-table .val {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg);
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td {
    display: block; width: 100%;
  }
  .compare-table td:not(:first-child) {
    text-align: left;
    width: 100%;
    padding: 6px 16px;
    border-bottom: none;
  }
  .compare-table td:not(:first-child)::before {
    content: attr(data-label) " · ";
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-mute);
  }
  .compare-table tr { padding: 12px 0; border-bottom: 1px solid var(--rule); }
}

/* ---- FAQ ---- */
.faq {
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--rule);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.faq-head h2 em { font-style: italic; color: var(--gold); }
.faq-head p {
  margin-top: 20px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 360px;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--rule-strong);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule-strong); }
.faq-q {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.faq-a {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
