/* ============================================================
   Todokan — Pricing page
   Inherits palette/type from colors_and_type.css.
   Follows landing.html visual language: warm paper, clay accent,
   editorial italic + mono eyebrows.
   ============================================================ */

:root {
  --bg: #F7F4ED;
  --bg-warm: #EFE9D9;
  --ink: #1A2A20;
  --ink-muted: #5B6B61;
  --ink-soft: #8A9A8F;
  --line: #E2DCCC;
  --line-strong: #C9C0AB;
  --surface: #FFFFFF;
  --surface-warm: #FBF8F1;
  --accent: #CF5807;
  --accent-soft: rgba(207, 88, 7, 0.10);
  --accent-ink: #FFFFFF;
  --moss: #2E4036;
  --moss-dark: #1A2A20;

  --maxw: 1240px;
  --maxw-narrow: 920px;

  --font-sans: "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --italic-font: "Young Serif", "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* extra Google fonts for italic display */
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&family=Instrument+Serif:ital@0;1&display=swap');

/* ===========================  NAV  =========================== */
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand img { height: 22px; width: auto; display: block; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
}
.nav__cta:hover { background: #B84B04; transform: translateY(-1px); }
.nav__rule {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ===========================  HERO  =========================== */
.hero {
  max-width: var(--maxw);
  margin: 80px auto 56px;
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 auto;
  max-width: 12ch;
  color: var(--ink);
}
.hero__title em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.015em;
  font-size: 0.96em;
  display: inline-block;
}
.hero__sub {
  max-width: 580px;
  margin: 28px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ============  BILLING TOGGLE + CURRENCY  ============ */
.billbar {
  max-width: var(--maxw);
  margin: 40px auto 36px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.toggle {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  position: relative;
}
.toggle__btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms;
  position: relative;
  z-index: 1;
}
.toggle__btn[aria-pressed="true"] { color: #fff; }
.toggle__slide {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--ink);
  border-radius: 999px;
  transition: left 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              width 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toggle__save {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 700;
}

.curr {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.curr__btn {
  appearance: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.curr__btn[aria-pressed="true"] {
  background: var(--bg-warm);
  color: var(--ink);
}

.billbar__note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ============  TIER CARDS  ============ */
.tiers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 220ms, box-shadow 220ms;
}
.tier__priceBlock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 124px;
}
.tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -28px rgba(26, 42, 32, 0.22);
}
.tier--featured {
  background: var(--ink);
  color: #FBF8F1;
  border-color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(26, 42, 32, 0.45);
}
.tier--featured:hover { box-shadow: 0 36px 70px -28px rgba(26, 42, 32, 0.55); }

.tier__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(207, 88, 7, 0.6);
}

.tier__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: uppercase;
}
.tier--featured .tier__name { color: rgba(255, 255, 255, 0.55); }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-sans);
  letter-spacing: -0.04em;
}
.tier__priceNum {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.tier__priceCur {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  margin-right: 2px;
}
.tier--featured .tier__priceCur { color: rgba(255, 255, 255, 0.55); }
.tier__priceUnit {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.tier--featured .tier__priceUnit { color: rgba(255, 255, 255, 0.6); }
.tier__priceBilled {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  min-height: 14px;
  line-height: 1.2;
}
.tier--featured .tier__priceBilled { color: rgba(255, 255, 255, 0.45); }

.tier__pitch {
  font-family: var(--italic-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
}
.tier--featured .tier__pitch { color: #F4B580; }

.tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 150ms, transform 150ms;
  border: 1px solid var(--ink);
}
.tier__cta:hover { background: #0d1c14; transform: translateY(-1px); }
.tier__cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.tier__cta--ghost:hover { background: var(--ink); color: #fff; }
.tier__cta--clay {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 24px -8px rgba(207, 88, 7, 0.5);
}
.tier__cta--clay:hover { background: #B84B04; }
.tier--featured .tier__cta--clay { box-shadow: 0 14px 28px -6px rgba(207, 88, 7, 0.65); }

.tier__hr {
  height: 1px;
  background: var(--line);
  margin: 0;
  border: 0;
}
.tier--featured .tier__hr { background: rgba(255, 255, 255, 0.12); }

.tier__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.tier--featured .tier__feats { color: rgba(255, 255, 255, 0.92); }
.tier__feats li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: baseline;
}
.tier__feats svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--accent); }
.tier--featured .tier__feats svg { color: #F4B580; }
.tier__feats b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tier__feats em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: block;
  margin-top: 1px;
  text-transform: lowercase;
}
.tier--featured .tier__feats em { color: rgba(255, 255, 255, 0.55); }

/* ============  AI SPEND CALLOUT  ============ */
.spend {
  max-width: var(--maxw);
  margin: 100px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.spend__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.spend__h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: var(--ink);
}
.spend__h2 em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.96em;
}
.spend__lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 22px;
  max-width: 460px;
}
.spend__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
}
.spend__points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.spend__points li:last-child { border-bottom: 1px solid var(--line); }
.spend__pIdx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}
.spend__pT { font-weight: 700; margin: 0 0 4px; letter-spacing: -0.005em; }
.spend__pS { color: var(--ink-muted); font-size: 14px; margin: 0; line-height: 1.5; }

/* The receipt / meter visual */
.meter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px -28px rgba(26, 42, 32, 0.25);
  position: relative;
  overflow: hidden;
}
.meter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(207, 88, 7, 0.08), transparent 50%);
  pointer-events: none;
}
.meter__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.meter__hdT {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.meter__hdT b { color: var(--ink); font-weight: 700; letter-spacing: 0.18em; }
.meter__plan {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 9px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
}
.meter__bar {
  height: 14px;
  background: var(--bg-warm);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  position: relative;
}
.meter__seg {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.meter__seg:last-child { border-right: 0; }
.meter__seg--used { background: linear-gradient(90deg, #E8731F, #CF5807); }
.meter__seg--free { background: var(--moss); }
.meter__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.meter__legend b { color: var(--ink); font-weight: 700; }
.meter__rows {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.meter__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.meter__row:last-child { border-bottom: 0; }
.meter__rowT { color: var(--ink); }
.meter__rowT em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 1px;
  text-transform: uppercase;
}
.meter__rowQ {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.meter__rowV {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.meter__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1.5px solid var(--ink);
  margin-top: 8px;
}
.meter__totalL {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}
.meter__totalV {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.meter__cap {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  line-height: 1.5;
}
.meter__cap b { color: var(--accent); font-weight: 700; }

/* ============  COMPARISON TABLE  ============ */
.compare {
  max-width: var(--maxw);
  margin: 120px auto 0;
  padding: 0 32px;
}
.compare__head {
  text-align: center;
  margin-bottom: 48px;
}
.compare__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.compare__h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.compare__h2 em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}

.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.compare__table thead th {
  background: var(--bg-warm);
  padding: 22px 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1.5px solid var(--line-strong);
  vertical-align: bottom;
  width: 19%;
}
.compare__table thead th:first-child {
  width: 24%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.compare__table thead th.is-featured {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.compare__table thead th.is-featured::after {
  content: "RECOMMENDED";
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-top: 4px;
}
.compare__tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare__tierP {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.compare__table thead th.is-featured .compare__tierP { color: rgba(255, 255, 255, 0.65); }

.compare__table tbody tr { border-top: 1px solid var(--line); }
.compare__table tbody th,
.compare__table tbody td {
  padding: 16px 20px;
  font-size: 14.5px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.compare__table tbody td { font-family: var(--font-mono); font-size: 13px; color: var(--ink); letter-spacing: 0.01em; }
.compare__table tbody td.is-featured-col {
  background: rgba(26, 42, 32, 0.04);
  border-left: 1px solid rgba(26, 42, 32, 0.08);
  border-right: 1px solid rgba(26, 42, 32, 0.08);
  font-weight: 600;
}
.compare__table tbody tr:last-child td,
.compare__table tbody tr:last-child th { border-bottom: 0; }

.compare__table tbody th {
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
  background: var(--surface-warm);
}
.compare__table tbody th small {
  display: block;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: none;
}

/* Section rows */
.compare__table tbody tr.compare__section th,
.compare__table tbody tr.compare__section td {
  background: var(--bg);
  padding: 22px 20px 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  border-bottom: 0;
}

.compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 64, 54, 0.08);
  color: var(--moss);
}
.compare__check svg { width: 12px; height: 12px; }
.compare__x {
  display: inline-block;
  color: var(--ink-soft);
  opacity: 0.55;
  font-family: var(--font-mono);
  font-weight: 400;
}

/* CTA row beneath table */
.compare__cta {
  display: grid;
  grid-template-columns: 24% repeat(4, 1fr);
  gap: 0;
  margin-top: 12px;
  padding: 0 0;
}
.compare__cta > div { padding: 16px 20px; }
.compare__cta a {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 150ms, color 150ms;
}
.compare__cta a:hover { background: var(--ink); color: #fff; }
.compare__cta a.is-clay {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.compare__cta a.is-clay:hover { background: #B84B04; }

/* ============  ADD-ONS  ============ */
.addons {
  max-width: var(--maxw);
  margin: 120px auto 0;
  padding: 0 32px;
}
.addons__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 36px;
}
.addons__h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.addons__h2 em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}
.addons__sub {
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 460px;
  margin: 0;
  line-height: 1.55;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.addon__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.addon__t {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.addon__price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-top: -4px;
}
.addon__price b { font-family: var(--font-sans); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-right: 4px; }
.addon__s {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============  FAQ  ============ */
.faq {
  max-width: var(--maxw-narrow);
  margin: 120px auto 0;
  padding: 0 32px;
}
.faq__head {
  text-align: center;
  margin-bottom: 40px;
}
.faq__h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.faq__h2 em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}
.faq__sub {
  margin: 14px auto 0;
  max-width: 500px;
  font-size: 15.5px;
  color: var(--ink-muted);
}
.q {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.q:last-of-type { border-bottom: 1px solid var(--line); }
.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.q summary::-webkit-details-marker { display: none; }
.q summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-soft);
  transition: transform 200ms, color 200ms;
  flex: 0 0 auto;
}
.q[open] summary::after { content: "−"; color: var(--accent); }
.q p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 640px;
}

/* ============  CTA  ============ */
.cta {
  max-width: var(--maxw);
  margin: 120px auto 0;
  padding: 0 32px;
  text-align: center;
}
.cta__t {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 760px;
}
.cta__t em {
  font-family: var(--italic-font);
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.96em;
}
.cta__row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn--xl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid var(--accent);
  box-shadow: 0 14px 30px -10px rgba(207, 88, 7, 0.5);
  transition: background 150ms, transform 150ms, box-shadow 150ms;
}
.btn--xl:hover { background: #B84B04; transform: translateY(-1px); box-shadow: 0 18px 36px -10px rgba(207, 88, 7, 0.55); }
.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.cta__note {
  display: block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

/* ============  FOOTER  ============ */
.foot {
  max-width: var(--maxw);
  margin: 100px auto 0;
  padding: 40px 32px 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.foot__logo {
  display: inline-block;
  padding: 10px 16px;
  background: var(--moss);
  border-radius: 8px;
}
.foot__logo img { height: 22px; width: auto; }
.foot__line {
  font-family: var(--italic-font);
  font-style: normal;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.foot__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ============  RESPONSIVE  ============ */
@media (max-width: 1100px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .addons__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav { padding: 20px; gap: 14px; }
  .hero { margin: 56px auto 40px; }
  .billbar { flex-direction: column; gap: 12px; }
  .tiers { grid-template-columns: 1fr; }
  .spend { grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
  .addons__head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .addons__grid { grid-template-columns: 1fr; }
  .compare { overflow-x: auto; }
  .compare__table { min-width: 760px; }
  .compare__cta { display: none; }
  .foot { gap: 20px; }
}
