/* =====================================================================
   iGC Tax Calculator — production stylesheet
   Uses site CSS tokens (--igc-bg, --igc-accent, etc.) so dark/light
   follow the rest of the theme. Bloomberg-financial feel, navy accent.
   ===================================================================== */
.tc {
  font-feature-settings: 'ss01' on, 'cv11' on;
}
.tc-mono { font-family: 'DM Mono', monospace; font-variant-numeric: tabular-nums; }

/* Hero */
.tc-hero {
  max-width: 1280px; margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}
.tc-hero__eyebrow {
  font: 600 11px/1 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--igc-accent);
  margin-bottom: 14px;
}
.tc-hero__h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 14px;
  max-width: 20ch;
  color: var(--igc-text);
}
.tc-hero__h1-year { color: var(--igc-text-faint); font-weight: 500; }
.tc-hero__lede {
  font-size: 1.05rem; line-height: 1.55;
  color: var(--igc-text-muted);
  max-width: 64ch;
  margin-bottom: 28px;
}
.tc-hero__lede strong { color: var(--igc-text); font-weight: 600; }
.tc-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 11px/1 'DM Mono', monospace;
  color: var(--igc-text-faint);
  padding: 6px 12px;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 6px;
  margin-bottom: 24px;
}
.tc-stamp__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #047857; box-shadow: 0 0 8px rgba(4,120,87,0.5);
}

/* Inputs panel */
.tc-inputs {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-radius: 16px;
  box-shadow: var(--igc-shadow-1);
  padding: 24px 28px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .tc-inputs { grid-template-columns: 1fr; gap: 20px; } }
.tc-input__label {
  font: 600 11px/1 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--igc-text-faint);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.tc-input__help {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--igc-text-faintest, #94A3B8);
  color: var(--igc-text-faint);
  font: 600 9px/1 'DM Mono', monospace;
  cursor: help;
}

/* GGR display + slider */
.tc-ggr-display {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.tc-ggr-value {
  font: 700 2.25rem/1 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
  color: var(--igc-text);
}
.tc-ggr-unit { font: 500 0.85rem/1 'DM Mono', monospace; color: var(--igc-text-faint); }
.tc-ggr-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--igc-border);
  border-radius: 2px; cursor: pointer; outline: none;
  margin: 4px 0 0;
}
.tc-ggr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--igc-accent);
  border: 2px solid var(--igc-bg-elev);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--igc-accent), 0 2px 6px rgba(29,78,216,0.30);
  cursor: grab;
}
.tc-ggr-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.tc-ggr-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--igc-accent);
  border: 2px solid var(--igc-bg-elev);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--igc-accent), 0 2px 6px rgba(29,78,216,0.30);
  cursor: grab; border-radius: 50%;
}
.tc-ggr-ticks {
  display: flex; justify-content: space-between;
  font: 500 10px/1 'DM Mono', monospace;
  color: var(--igc-text-faintest, #94A3B8);
  margin-top: 8px;
}

/* Chips */
.tc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tc-chip {
  padding: 9px 14px;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--igc-text-muted);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.15s var(--igc-ease, ease);
  font-family: inherit;
}
.tc-chip:hover { border-color: var(--igc-accent); color: var(--igc-accent); }
.tc-chip[aria-pressed="true"] {
  background: var(--igc-accent);
  border-color: var(--igc-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(29,78,216,0.30);
}
.tc-chip[aria-pressed="true"] .tc-chip__dot { background: #fff; }
.tc-chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--igc-accent); }
.tc-chips__note { margin-top: 14px; font-size: 0.78rem; color: var(--igc-text-faint); line-height: 1.5; }

/* Currency */
.tc-ccy { display: flex; flex-direction: column; gap: 10px; }
.tc-ccy-display { font: 700 2.25rem/1 'DM Sans', sans-serif; color: var(--igc-text); }
.tc-ccy-buttons { display: flex; gap: 6px; }
.tc-ccy-btn {
  flex: 1; padding: 9px 0;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 7px;
  font: 500 0.82rem/1 'DM Mono', monospace;
  color: var(--igc-text-muted);
  cursor: pointer; text-align: center;
  transition: all 0.15s var(--igc-ease, ease);
  font-family: 'DM Mono', monospace;
}
.tc-ccy-btn:hover { border-color: var(--igc-accent); color: var(--igc-accent); }
.tc-ccy-btn[aria-pressed="true"] {
  background: var(--igc-accent); border-color: var(--igc-accent); color: #fff;
}

/* Headline */
.tc-headline {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-left: 4px solid var(--igc-accent);
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 36px;
  font-size: 1.1rem; line-height: 1.5;
  color: var(--igc-text);
  font-variant-numeric: tabular-nums;
  box-shadow: var(--igc-shadow-1);
}
.tc-headline strong { color: var(--igc-accent-deep); font-weight: 700; }
.tc-headline__caret {
  display: block;
  font: 500 0.72rem/1 'DM Mono', monospace;
  color: var(--igc-text-faint);
  margin-top: 8px;
}

/* Section */
.tc-section { max-width: 1280px; margin: 0 auto; padding: 0 2rem 3.5rem; }
.tc-section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--igc-border);
}
.tc-section__title {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--igc-text);
}
.tc-section__sub { font-size: 0.9rem; color: var(--igc-text-muted); margin-top: 4px; }
.tc-section__meta { font: 500 11px/1.4 'DM Mono', monospace; color: var(--igc-text-faint); text-align: right; }

/* Pressure Map */
.tc-pressuremap {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--igc-shadow-1);
  margin-bottom: 3.5rem;
}
.tc-pressuremap__legend {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-bottom: 20px;
  font: 500 11px/1 'DM Mono', monospace;
  color: var(--igc-text-faint);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tc-pressuremap__legend-item { display: inline-flex; align-items: center; gap: 6px; }
.tc-pressuremap__legend-swatch { width: 10px; height: 10px; border-radius: 2px; }

/* Layer-toggle pill row (interactive replacement for the static legend) */
.tc-layers {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.tc-layers__label {
  font: 600 11px/1 'DM Mono', monospace;
  color: var(--igc-text-faint);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-right: 6px;
}
.tc-layer {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border: 1px solid var(--igc-border);
  background: var(--igc-bg-glass);
  border-radius: 999px;
  font: 500 12px/1 'DM Sans', sans-serif;
  color: var(--igc-text-faint);
  cursor: pointer;
  transition: all 0.15s var(--igc-ease, ease);
  font-family: inherit;
  white-space: nowrap;
}
.tc-layer:hover {
  color: var(--igc-text);
  border-color: var(--igc-border-mid);
  background: var(--igc-bg-elev);
}
.tc-layer[aria-pressed="true"] {
  color: var(--igc-text);
  background: var(--igc-bg-elev);
  border-color: var(--igc-border-mid);
  box-shadow: inset 0 0 0 1px var(--igc-border-mid);
}
.tc-layer__swatch {
  width: 10px; height: 10px; border-radius: 2px;
  opacity: 0.35;
  transition: opacity 0.15s var(--igc-ease, ease);
}
.tc-layer[aria-pressed="true"] .tc-layer__swatch { opacity: 1; }
.tc-layer__sub {
  font: 400 11px/1 'DM Mono', monospace;
  color: var(--igc-text-faint);
  margin-left: 2px;
}
@media (max-width: 720px) {
  .tc-layer__sub { display: none; }
}
.tc-swatch-ggr { background: var(--igc-accent); }
.tc-swatch-licence { background: #6366F1; }
.tc-swatch-levy { background: #B45309; }
.tc-swatch-other { background: var(--igc-text-faintest, #94A3B8); }

.tc-bars { display: flex; flex-direction: column; gap: 10px; }
.tc-bar {
  display: grid;
  grid-template-columns: 140px 1fr 110px 100px;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.15s var(--igc-ease, ease);
}
.tc-bar:hover { background: var(--igc-bg-glass); }
.tc-bar__label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.95rem; color: var(--igc-text); }
.tc-bar__flag { font-size: 1.05rem; }
.tc-bar__track {
  position: relative;
  height: 28px;
  background: var(--igc-bg-glass);
  border-radius: 6px;
  overflow: hidden;
}
.tc-bar__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  display: flex;
  transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tc-bar__seg { height: 100%; transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1); }
.tc-bar__seg--ggr { background: var(--igc-accent); }
.tc-bar__seg--licence { background: #6366F1; }
.tc-bar__seg--levy { background: #B45309; }
.tc-bar__seg--other { background: var(--igc-text-faintest, #94A3B8); }
.tc-bar__pct {
  font: 700 1.05rem/1 'DM Sans', sans-serif;
  color: var(--igc-text);
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.tc-bar__amt {
  font: 500 0.85rem/1 'DM Mono', monospace;
  color: var(--igc-text-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tc-bar--cheapest { box-shadow: inset 3px 0 0 #047857; }
.tc-bar--priciest { box-shadow: inset 3px 0 0 #B91C1C; }
.tc-bar__tag {
  font: 600 9px/1 'DM Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 6px; border-radius: 3px;
  margin-left: 6px;
}
.tc-bar__tag--cheapest { background: rgba(4,120,87,0.12); color: #047857; }
.tc-bar__tag--priciest { background: rgba(185,28,28,0.10); color: #B91C1C; }
@media (max-width: 720px) {
  .tc-bar { grid-template-columns: 100px 1fr 70px; gap: 10px; }
  .tc-bar__amt { display: none; }
}

/* Cards */
.tc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
  margin-bottom: 3.5rem;
}
.tc-card {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--igc-shadow-1);
  transition: border-color 0.15s var(--igc-ease, ease), box-shadow 0.15s var(--igc-ease, ease), transform 0.15s var(--igc-ease, ease);
}
.tc-card:hover {
  border-color: var(--igc-border-mid);
  box-shadow: var(--igc-shadow-2);
  transform: translateY(-1px);
}
.tc-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; margin-bottom: 18px;
}
.tc-card__title {
  font-size: 1.08rem; font-weight: 600; color: var(--igc-text);
  display: inline-flex; align-items: center; gap: 8px;
  line-height: 1.3;
}
.tc-card__flag { font-size: 1.15rem; line-height: 1; }
.tc-card__reg {
  font: 500 11px/1.3 'DM Mono', monospace;
  color: var(--igc-text-faint);
  margin-top: 3px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tc-card__pick {
  width: 22px; height: 22px;
  border-radius: 5px;
  border: 1.5px solid var(--igc-border-mid);
  background: var(--igc-bg-elev);
  cursor: pointer; flex-shrink: 0;
  transition: all 0.15s var(--igc-ease, ease);
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent;
  font-family: inherit;
}
.tc-card__pick:hover { border-color: var(--igc-accent); }
.tc-card__pick[aria-pressed="true"] { background: var(--igc-accent); border-color: var(--igc-accent); color: #fff; }
.tc-card__pick svg { width: 12px; height: 12px; }
.tc-card__big { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.tc-card__rate { font: 700 2.5rem/1 'DM Sans', sans-serif; letter-spacing: -0.025em; color: var(--igc-text); }
.tc-card__rate-unit { font: 500 1rem/1 'DM Mono', monospace; color: var(--igc-text-faint); }
.tc-card__total { font: 500 0.9rem/1.4 'DM Mono', monospace; color: var(--igc-text-muted); margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.tc-card__vs { font-size: 0.78rem; color: var(--igc-text-faint); margin-bottom: 14px; }
.tc-card__vs-up { color: #B91C1C; font-weight: 600; }
.tc-card__vs-down { color: #047857; font-weight: 600; }

/* Forthcoming badges */
.tc-fcg { display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; }
.tc-fc {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  text-decoration: none;
  background: rgba(180,83,9,0.08);
  border: 1px solid rgba(180,83,9,0.25);
  color: #92400E;
  transition: all 0.15s var(--igc-ease, ease);
  line-height: 1.35;
}
.tc-fc:hover { background: rgba(180,83,9,0.14); border-color: rgba(180,83,9,0.50); color: #78350F; text-decoration: none; }
.tc-fc--imminent { background: rgba(185,28,28,0.08); border-color: rgba(185,28,28,0.35); color: #B91C1C; }
.tc-fc--imminent:hover { background: rgba(185,28,28,0.14); color: #991B1B; }
.tc-fc__icon { flex-shrink: 0; font: 700 0.9rem/1 'DM Mono', monospace; }
.tc-fc__text { flex: 1; font-weight: 500; }
.tc-fc__ext { flex-shrink: 0; opacity: 0.6; font: 500 0.7rem/1 'DM Mono', monospace; }

/* Mini-bar inside card */
.tc-minibar { height: 8px; background: var(--igc-bg-glass); border-radius: 4px; overflow: hidden; display: flex; margin-bottom: 14px; }
.tc-minibar__seg { height: 100%; transition: width 400ms ease; }

/* Breakdown list */
.tc-breakdown { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.tc-breakdown li {
  display: grid;
  grid-template-columns: 8px 1fr auto auto;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--igc-text-muted);
  font-variant-numeric: tabular-nums;
}
.tc-breakdown li::before { content: ''; width: 8px; height: 8px; border-radius: 2px; }
.tc-breakdown li.b-ggr::before { background: var(--igc-accent); }
.tc-breakdown li.b-licence::before { background: #6366F1; }
.tc-breakdown li.b-levy::before { background: #B45309; }
.tc-breakdown li.b-other::before { background: var(--igc-text-faintest, #94A3B8); }
.tc-breakdown li .b-amt { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--igc-text); font-weight: 500; }
.tc-breakdown li .b-src {
  font: 500 9px/1 'DM Mono', monospace;
  color: var(--igc-accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 5px;
  background: rgba(29,78,216,0.08);
  border-radius: 3px;
  cursor: pointer; user-select: none;
}
.tc-breakdown li .b-src:hover { background: rgba(29,78,216,0.18); }

.tc-note {
  font-size: 0.78rem;
  color: var(--igc-text-muted);
  padding: 10px 12px;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 6px;
  margin-bottom: 18px;
  line-height: 1.45;
}
.tc-note p { margin: 0; }
.tc-note ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tc-note li {
  position: relative;
  padding-left: 14px;
}
.tc-note li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--igc-accent);
  opacity: 0.7;
}
.tc-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--igc-border);
  font-size: 0.78rem; color: var(--igc-text-faint);
}
.tc-verified { display: inline-flex; align-items: center; gap: 6px; }
.tc-verified-dot { width: 7px; height: 7px; border-radius: 50%; background: #047857; }
.tc-profile-link { display: inline-flex; align-items: center; gap: 5px; color: var(--igc-accent); font-weight: 500; text-decoration: none; }
.tc-profile-link::after { content: '→'; transition: transform 0.15s var(--igc-ease, ease); }
.tc-profile-link:hover::after { transform: translateX(2px); }

/* N/A card */
.tc-card--na { opacity: 0.55; }

/* Source drawer */
.tc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(520px, 92vw);
  background: var(--igc-bg-elev);
  border-left: 1px solid var(--igc-border);
  box-shadow: var(--igc-shadow-2);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
}
.tc-drawer[data-open="true"] { transform: translateX(0); }
.tc-drawer-back {
  position: fixed; inset: 0;
  background: rgba(15,30,60,0.35);
  z-index: 35;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.tc-drawer-back[data-open="true"] { opacity: 1; pointer-events: auto; }
.tc-drawer__head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--igc-border);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px;
}
.tc-drawer__eyebrow {
  font: 600 10px/1 'DM Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--igc-accent);
  margin-bottom: 6px;
}
.tc-drawer__title { font-size: 1.15rem; font-weight: 600; color: var(--igc-text); }
.tc-drawer__close {
  width: 28px; height: 28px;
  border: 1px solid var(--igc-border);
  background: var(--igc-bg-glass);
  border-radius: 6px;
  cursor: pointer;
  color: var(--igc-text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
}
.tc-drawer__close:hover { color: var(--igc-text); }
.tc-drawer__body {
  padding: 22px 24px 30px;
  overflow-y: auto;
  flex: 1;
  font-size: 0.92rem; line-height: 1.55;
  color: var(--igc-text-muted);
}
.tc-drawer__rate { display: inline-block; font: 700 2rem/1 'DM Sans', sans-serif; color: var(--igc-text); margin-bottom: 10px; letter-spacing: -0.02em; }
.tc-drawer__caption { font-size: 0.85rem; color: var(--igc-text-faint); margin-bottom: 22px; }
.tc-drawer__quote {
  background: var(--igc-bg-glass);
  border-left: 3px solid var(--igc-accent);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 18px 0;
  font-size: 0.9rem; line-height: 1.55;
  color: var(--igc-text);
  font-style: italic;
}
.tc-drawer__source {
  display: block;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
  text-decoration: none;
}
.tc-drawer__source:hover { border-color: var(--igc-accent); background: var(--igc-bg-elev); }
.tc-drawer__source-kind {
  font: 600 10px/1 'DM Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--igc-accent);
  margin-bottom: 6px;
}
.tc-drawer__source-title { font-size: 0.92rem; font-weight: 600; color: var(--igc-text); margin-bottom: 4px; }
.tc-drawer__source-meta { font-size: 0.78rem; color: var(--igc-text-faint); font-family: 'DM Mono', monospace; }

/* Compare bottom sheet */
.tc-compare {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--igc-bg-elev);
  border-top: 1px solid var(--igc-border);
  box-shadow: 0 -8px 32px rgba(15,30,60,0.10);
  padding: 18px 32px 22px;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 25;
  max-height: 50vh;
  overflow-y: auto;
}
.tc-compare[data-open="true"] { transform: translateY(0); }
.tc-compare__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 14px; flex-wrap: wrap;
}
.tc-compare__title {
  font-size: 1rem; font-weight: 600; color: var(--igc-text);
  display: inline-flex; align-items: center; gap: 10px;
}
.tc-compare__count {
  font: 600 10px/1 'DM Mono', monospace;
  color: var(--igc-accent);
  background: rgba(29,78,216,0.10);
  padding: 4px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tc-compare__actions { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.tc-compare__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 7px;
  color: var(--igc-text);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  font-family: inherit;
}
.tc-compare__btn:hover { background: var(--igc-bg-elev); }
.tc-compare__btn--primary {
  background: var(--igc-accent); color: #fff; border-color: var(--igc-accent);
}
.tc-compare__btn--primary:hover { background: var(--igc-accent-deep); border-color: var(--igc-accent-deep); color: #fff; }
.tc-compare__table {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.tc-compare__cell {
  background: var(--igc-bg-glass);
  border: 1px solid var(--igc-border);
  border-radius: 10px;
  padding: 14px 16px;
}
.tc-compare__cell-name { font-size: 0.85rem; font-weight: 600; color: var(--igc-text); margin-bottom: 8px; display: inline-flex; align-items: center; gap: 6px; }
.tc-compare__cell-rate { font: 700 1.5rem/1 'DM Sans', sans-serif; color: var(--igc-text); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; margin-bottom: 4px; }
.tc-compare__cell-total { font: 500 0.78rem/1 'DM Mono', monospace; color: var(--igc-text-muted); }

/* Methodology + FAQ */
.tc-method {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--igc-shadow-1);
  margin-bottom: 3rem;
}
.tc-method h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--igc-text); }
.tc-method p { font-size: 0.92rem; line-height: 1.6; color: var(--igc-text-muted); margin-bottom: 12px; }
.tc-method ul { font-size: 0.9rem; line-height: 1.6; color: var(--igc-text-muted); padding-left: 22px; }
.tc-method strong { color: var(--igc-text); }

.tc-faq { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4rem; }
.tc-faq__item {
  background: var(--igc-bg-elev);
  border: 1px solid var(--igc-border);
  border-radius: 10px;
  overflow: hidden;
}
.tc-faq__q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 16px 22px;
  font: 600 0.95rem/1.4 'DM Sans', sans-serif;
  color: var(--igc-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-family: inherit;
}
.tc-faq__q::after { content: '+'; font: 400 1.2rem/1 'DM Mono', monospace; color: var(--igc-text-faint); transition: transform 0.2s ease; }
.tc-faq__item[data-open="true"] .tc-faq__q::after { content: '−'; }
.tc-faq__a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem; line-height: 1.6;
  color: var(--igc-text-muted);
  transition: max-height 0.2s ease, padding 0.2s ease;
}
.tc-faq__item[data-open="true"] .tc-faq__a { padding: 0 22px 18px; max-height: 600px; }

.tc-footnote {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 2rem 4rem;
  font-size: 0.82rem; color: var(--igc-text-faint); line-height: 1.5;
  border-top: 1px solid var(--igc-border);
}
.tc-footnote strong { color: var(--igc-text-muted); font-weight: 600; }

/* Print */
@media print {
  .tc-compare, .tc-drawer, .tc-drawer-back, .tc-faq, .tc-method, .tc-ccy-buttons, .tc-ggr-slider, .tc-ggr-ticks, .tc-card__pick, .tc-compare__btn, .tc-stamp { display: none !important; }
  body { background: #fff; color: #000; }
  .tc-hero, .tc-section, .tc-footnote { padding: 12px 0; }
  .tc-card, .tc-pressuremap, .tc-headline { box-shadow: none; border-color: #ccc; page-break-inside: avoid; }
  .tc-bar { page-break-inside: avoid; }
  .tc-hero__h1 { font-size: 1.4rem; }
}
