/* Carteira Falcão — calculadoras estáticas (alinhado ao design system SSR) */
:root {
  color-scheme: dark;
  --bg: #0d1117;
  --card: #161b22;
  --border: #21262d;
  --border-strong: #30363d;
  --accent: #00c896;
  --text: #e6edf3;
  --muted: #8b949e;
  --danger: #ff4d4d;
  --warn: #d29922;
  --radius-card: 12px;
  --radius-input: 8px;
  --content-max: 900px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.calc-main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px 20px 56px;
}

/* ——— Navbar (espelho SSR + links da spec calculadoras) ——— */
.calc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
}
.calc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}
.calc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.calc-logo:hover {
  text-decoration: none;
}
.calc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.calc-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s;
}
.calc-nav-link:hover,
.calc-nav-link.active {
  color: var(--text);
  text-decoration: none;
}
.calc-nav-link.active {
  color: var(--accent);
}
.calc-nav-more {
  position: relative;
}
.calc-nav-more-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: inherit;
}
.calc-nav-more-btn:hover {
  color: var(--text);
}
.calc-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  min-width: 180px;
  z-index: 200;
  flex-direction: column;
  gap: 4px;
}
.calc-nav-more:hover .calc-nav-dropdown {
  display: flex;
}
.calc-nav-dropdown a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}
.calc-nav-dropdown a:hover {
  color: var(--text);
  background: #21262d;
  text-decoration: none;
}
.calc-nav-dropdown a.active {
  color: #00c896;
}
.calc-header-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.calc-btn-primary {
  background: var(--accent);
  color: #000 !important;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.calc-btn-primary:hover {
  text-decoration: none;
  filter: brightness(1.05);
}
.calc-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0, 200, 150, 0.45);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.calc-btn-outline:hover {
  text-decoration: none;
  background: rgba(0, 200, 150, 0.08);
}
button.calc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 900px) {
  .calc-nav {
    display: none;
  }
}

/* ——— Footer ——— */
.calc-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 24px 24px;
  font-family: var(--font);
  margin-top: 48px;
}
.calc-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 24px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.calc-footer-brand .calc-logo {
  margin-bottom: 10px;
}
.calc-footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.calc-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.calc-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.calc-footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
}
.calc-footer-col a:hover {
  color: var(--text);
  text-decoration: none;
}
.calc-footer-copy {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 11px;
  color: #484f58;
  max-width: 1600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .calc-footer-grid {
    grid-template-columns: 1fr;
  }
  .calc-footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ——— Tipografia & layout página ——— */
.calc-hero {
  margin-bottom: 32px;
}
.calc-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--text);
}
.calc-hero .calc-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 42rem;
}
.calc-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.calc-breadcrumb a {
  color: var(--muted);
}
.calc-breadcrumb a:hover {
  color: var(--text);
}

.calc-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}
.calc-section-title:first-of-type {
  margin-top: 0;
}

/* ——— Cards ——— */
.calc-card {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 16px;
}
.calc-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
}
.calc-card--after-sim {
  margin-top: 24px;
}

/* ——— Hub grid ——— */
.calc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .calc-card-grid {
    grid-template-columns: 1fr;
  }
}

.guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 901px) {
  .guide-hub-grid > *:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}
@media (max-width: 900px) {
  .guide-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .guide-hub-grid {
    grid-template-columns: 1fr;
  }
}

.calc-hub-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 28px;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.calc-hub-card:hover {
  border-color: rgba(0, 200, 150, 0.35);
  text-decoration: none;
}
.calc-hub-card-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
  line-height: 1;
}
.calc-hub-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.calc-hub-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.calc-hub-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Hub card usado como bloco (não link) */
.calc-hub-card--static {
  cursor: default;
  min-height: 0;
}
.calc-hub-card--static:hover {
  border-color: var(--border-strong);
}

/* ——— Form ——— */
.calc-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.calc-input,
.calc-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-input);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.calc-input:focus,
.calc-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.2);
}
.calc-help {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.calc-help--flush {
  margin-top: 0;
}
.calc-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .calc-form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.calc-form-full {
  grid-column: 1 / -1;
}

.calc-btn-block {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius-input);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--accent);
  color: var(--bg);
  margin-top: 8px;
}
.calc-btn-block:hover {
  filter: brightness(1.06);
}

/* ——— Resultados Gordon ——— */
.calc-result-hero {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  margin: 20px 0 6px;
}
.calc-result-secondary {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}
.calc-error {
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 0;
}

/* ——— Accordion FAQ ——— */
.calc-accordion {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--card);
}
.calc-acc-item + .calc-acc-item {
  border-top: 1px solid var(--border);
}
.calc-acc-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.calc-acc-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}
.calc-acc-icon {
  color: var(--muted);
  font-size: 12px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.calc-acc-item.is-open .calc-acc-icon {
  transform: rotate(180deg);
}
.calc-acc-panel {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.calc-acc-panel a {
  color: var(--accent);
}
.calc-acc-panel a:hover {
  text-decoration: underline;
}
.calc-acc-item.is-open .calc-acc-panel {
  display: block;
}

/* ——— Tabs PEG ——— */
.calc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-strong);
  margin: -4px 0 20px;
}
.calc-tab {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.calc-tab:hover {
  color: var(--text);
}
.calc-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ——— Badges PEG ——— */
.calc-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 10px;
}
.calc-badge--ok {
  background: rgba(0, 200, 150, 0.15);
  color: var(--accent);
}
.calc-badge--warn {
  background: rgba(210, 153, 34, 0.2);
  color: #e3b341;
}
.calc-badge--bad {
  background: rgba(255, 77, 77, 0.15);
  color: #ff6b6b;
}

.calc-result-line {
  font-size: 1.05rem;
  margin: 8px 0 0;
  color: var(--text);
}
.calc-result-muted {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

/* ——— Collapsible (helper Gordon) ——— */
.calc-collapse-btn {
  width: 100%;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.calc-collapse-body {
  display: none;
  padding-top: 16px;
}
.calc-collapse.is-open .calc-collapse-body {
  display: block;
}
.calc-collapse.is-open .calc-collapse-chevron {
  transform: rotate(180deg);
}
.calc-collapse-chevron {
  color: var(--muted);
  font-size: 12px;
  transition: transform 0.2s;
}

/* ——— Steps ——— */
.calc-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.calc-steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.calc-steps li:last-child {
  margin-bottom: 0;
}
.calc-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— CTA final ——— */
.calc-cta {
  text-align: center;
  padding: 28px 20px;
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
}
.calc-cta p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}
.calc-cta .calc-btn-primary {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 15px;
}

.calc-warn-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.hidden {
  display: none !important;
}

/* ——— Busca de ticker (calculadoras) ——— */
.ticker-search-wrap {
  position: relative;
  margin-bottom: 20px;
}
.ticker-search-wrap > label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.ticker-search-row {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.ticker-search-combo {
  position: relative;
  flex: 1;
  min-width: 0;
}
#ticker-search {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-input);
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
#ticker-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.2);
}
.ticker-search-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 8px 18px;
  color: #e6edf3;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  font-family: inherit;
}
.ticker-search-btn:hover {
  border-color: #00c896;
  color: #00c896;
}
.ticker-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1c2128;
  border: 1px solid #30363d;
  border-radius: 8px;
  z-index: 50;
  list-style: none;
  margin: 4px 0 0 0;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ticker-suggestions li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #e6edf3;
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.ticker-suggestions li:hover,
.ticker-suggestions li[aria-selected='true'] {
  background: #21262d;
}
.ticker-suggestions li .sug-ticker {
  font-weight: 600;
  color: #00c896;
  min-width: 60px;
}
.ticker-suggestions li .sug-name {
  color: #8b949e;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ticker-loaded {
  background: #161b22;
  border: 1px solid #00c896;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #e6edf3;
  margin-bottom: 16px;
}
.ticker-loaded.hidden {
  display: none;
}
.ticker-loaded-info {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.ticker-loaded-name {
  color: #00c896;
  font-weight: 600;
}
.ticker-loaded-detail {
  color: #8b949e;
  font-size: 13px;
}
.ticker-clear-btn {
  background: transparent;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 4px 10px;
  color: #8b949e;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
}
.ticker-clear-btn:hover {
  border-color: #00c896;
  color: #00c896;
}

/* ——— Tabelas (guias) ——— */
.calc-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  background: var(--card);
}
.calc-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
.calc-table th {
  background: #161b22;
  color: #e6edf3;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border-strong);
  font-weight: 600;
}
.calc-table td {
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  color: #c9d1d9;
  vertical-align: top;
}
.calc-table tbody tr:nth-child(even) td {
  background: #0d1117;
}

/* ——— Artigo de guia ——— */
.guide-article {
  max-width: 760px;
  margin: 0 auto;
}
.guide-article h2 {
  font-size: 20px;
  font-weight: 700;
  color: #e6edf3;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #21262d;
}
.guide-article h3 {
  font-size: 17px;
  font-weight: 600;
  color: #c9d1d9;
  margin: 24px 0 8px;
}
.guide-article p {
  color: #8b949e;
  line-height: 1.7;
  margin: 0 0 14px;
}
.guide-article ul,
.guide-article ol {
  color: #8b949e;
  line-height: 1.7;
  padding-left: 20px;
  margin: 0 0 14px;
}
.guide-article li {
  margin-bottom: 6px;
}
.guide-article strong {
  color: #e6edf3;
}
.guide-article a {
  color: #00c896;
  text-decoration: none;
}
.guide-article a:hover {
  text-decoration: underline;
}

/* ——— Card de resumo (resumo em 60 segundos) ——— */
.guide-summary-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.guide-summary-card strong {
  color: #00c896;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.guide-summary-card ul {
  margin: 0;
  padding-left: 20px;
  color: #8b949e;
  line-height: 1.7;
}

/* ——— Hub guias: cards um pouco mais baixos ——— */
.guide-hub-grid .calc-hub-card {
  min-height: 160px;
}

/* ——— CTA em linha (guias) ——— */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  align-items: center;
}
.btn-row--tight {
  margin: 0;
}
.btn-row--center {
  justify-content: center;
}

.guide-article--in-card {
  max-width: none;
  margin: 0;
}
.calc-card .guide-article--in-card h2:first-of-type {
  margin-top: 0;
}
.calc-card .guide-article--in-card > ol:first-child,
.calc-card .guide-article--in-card > ul:first-child {
  margin-top: 0;
}

.calc-cta-link {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.calc-cta-link a {
  color: var(--accent);
  text-decoration: none;
}
.calc-cta-link a:hover {
  text-decoration: underline;
}

.calc-lead-list {
  max-width: 42rem;
  margin: 0 0 20px;
}

/* ——— Links de recurso (páginas estáticas) ——— */
.resource-links {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.resource-links li {
  margin-bottom: 8px;
}
.resource-links a {
  color: #00c896;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.resource-links a::before {
  content: "→";
}
.resource-links a:hover {
  text-decoration: underline;
}

/* Células de tabela comparativa */
.cell-yes {
  color: #00c896;
  font-weight: 600;
}
.cell-partial {
  color: #f59e0b;
  font-weight: 600;
}
.cell-no {
  color: #ff4d4d;
  font-weight: 600;
}
.cell-dep {
  color: #8b949e;
}

/* Card de plano com destaque */
.plan-card-pro {
  border-color: #00c896 !important;
}
.plan-badge {
  background: #00c896;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.calc-card-list {
  color: var(--muted);
  padding-left: 20px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.calc-card-list li {
  margin-bottom: 6px;
}

.calc-table--compare th:not(:first-child),
.calc-table--compare td:not(:first-child) {
  text-align: center;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f0eb;
  --card: #ffffff;
  --border: #e8e2da;
  --border-strong: #d4cdc5;
  --text: #1c1917;
  --muted: #78716c;
}
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] .calc-nav-dropdown a:hover { background: #faf7f4; }
[data-theme="light"] .ticker-search-btn {
  border-color: var(--border); color: var(--text);
}
[data-theme="light"] .ticker-suggestions {
  background: #ffffff; border-color: var(--border);
}
[data-theme="light"] .ticker-suggestions li { color: var(--text); }
[data-theme="light"] .ticker-suggestions li:hover { background: #faf7f4; }
[data-theme="light"] .ticker-loaded {
  background: #ffffff; border-color: #00c896; color: var(--text);
}
[data-theme="light"] .ticker-clear-btn {
  border-color: var(--border); color: var(--muted);
}
[data-theme="light"] .calc-table th { background: #faf7f4; color: var(--text); }
[data-theme="light"] .calc-table td { color: var(--text); }
[data-theme="light"] .calc-table tr:nth-child(even) { background: #fdf9f6; }
[data-theme="light"] .guide-article h2 {
  color: var(--text); border-bottom-color: var(--border);
}
[data-theme="light"] .guide-article h3 { color: #3d3733; }
[data-theme="light"] .guide-article p { color: var(--muted); }
[data-theme="light"] .guide-article strong { color: var(--text); }
[data-theme="light"] .guide-summary-card {
  background: #ffffff; border-color: var(--border);
}
