/* Pricing-specific overrides on top of landing.css paper system */

/* Pricing hero title slightly smaller than landing hero */
.hero-title-pricing {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
}
.hero-title-pricing em { font-style: italic; color: var(--dusk); font-weight: 400; }

/* Anchor color override on pricing — keep ink, not dusk */
.hero-aside .anchor-num { color: var(--ink); }

/* Fare toggle (monthly / yearly) */
.fare-toggle-wrap {
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.fare-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fare-toggle button {
  appearance: none;
  background: transparent;
  border: none;
  padding: 10px 20px;
  color: var(--ink-3);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.fare-toggle button.active { background: var(--ink); color: var(--paper); }
.save-chip {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--dusk);
}

/* Fare cards — paper, hairline grid */
.fares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.fare {
  background: var(--paper);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 540px;
  position: relative;
}
.fare.feature { background: var(--ink); color: var(--paper); }

.fare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--rule-2);
}
.fare.feature .fare-head { border-bottom-color: rgba(244, 239, 230, 0.22); }
.fare-head .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.fare.feature .fare-head .num { color: #f3a58b; }
.fare-head .badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--dusk);
  text-transform: uppercase;
  border: 1px solid var(--dusk);
  padding: 3px 8px;
  border-radius: 2px;
}
.fare.feature .fare-head .badge {
  color: #f3a58b;
  border-color: #f3a58b;
}

.fare h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fare h2 em { font-style: italic; color: var(--dusk); }
.fare.feature h2 { color: var(--paper); }
.fare.feature h2 em { color: #f3a58b; }

.fare .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-serif);
  padding: 10px 0;
  flex-wrap: wrap;
}
.fare .price .amt {
  font-size: 84px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.fare.feature .price .amt { color: var(--paper); }
.fare .price .per {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.fare.feature .price .per { color: #f3a58b; }
.fare .price .old {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-4);
  text-decoration: line-through;
}
.fare.feature .price .old { color: rgba(244, 239, 230, 0.5); }

.fare ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.fare ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.fare.feature ul li { color: var(--paper); opacity: 0.9; }
.fare ul li .mk {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--dusk);
  font-size: 17px;
  line-height: 1.35;
}
.fare.feature ul li .mk { color: #f3a58b; }
.fare ul li .x {
  color: var(--ink-4);
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.65;
}
.fare ul li .muted { color: var(--ink-4); }
.fare ul li .highlight { color: #f3a58b; font-weight: 600; }

.fare .cta-row {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px dashed var(--rule-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fare.feature .cta-row { border-top-color: rgba(244, 239, 230, 0.22); }
.fare .note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
}
.fare.feature .note { color: #f3a58b; }

.fare .btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: var(--f-sans);
}
.fare .btn-card:hover { background: var(--ink); color: var(--paper); }
.fare.feature .btn-card {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.fare.feature .btn-card:hover {
  background: #f3a58b;
  border-color: #f3a58b;
  color: var(--ink);
}

/* Comparison table */
.compare table {
  width: 100%;
  border-collapse: collapse;
}
.compare th,
.compare td {
  text-align: left;
  padding: 20px 0;
  border-top: 1px dashed var(--rule-2);
  font-size: 15px;
  vertical-align: baseline;
}
.compare th {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding-top: 0;
  border-top: none;
}
.compare tr th:nth-child(2),
.compare tr th:nth-child(3),
.compare tr td:nth-child(2),
.compare tr td:nth-child(3) {
  text-align: center;
  width: 200px;
}
.compare td:first-child {
  color: var(--ink);
  font-family: var(--f-serif);
  font-size: 18px;
}
.compare .y {
  color: var(--sage);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
}
.compare .n {
  color: var(--ink-4);
  font-family: var(--f-mono);
  font-size: 13px;
}

/* Nav active state */
.nav a.active { color: var(--ink); }

/* Slim footer for pricing (single-row) */
.pricing-foot {
  margin-top: 0;
  padding: 40px 0 0;
}
.pricing-foot .foot-links a { margin-left: 24px; }
.pricing-foot .foot-links a:first-child { margin-left: 0; }

/* Responsive */
@media (max-width: 960px) {
  .fares { grid-template-columns: 1fr; }
  .compare tr th:nth-child(2),
  .compare tr th:nth-child(3),
  .compare tr td:nth-child(2),
  .compare tr td:nth-child(3) {
    width: auto;
  }
  .pricing-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing-foot .foot-links a { margin-left: 0; margin-right: 24px; }
}
