.ticker-strip {
  background: var(--green-dark);
  padding: 32px 0;
  overflow: hidden;
}
.ticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.ticker-item {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.ticker-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ticker-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.ticker-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.ticker-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  margin-right: 6px;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px #4ADE80; }
  50% { opacity: 1; box-shadow: 0 0 12px #4ADE80; }
}

.ytd-section {
  background: linear-gradient(135deg, #14462A 0%, #1B5E37 50%, #236B3F 100%);
  color: #fff;
  padding: 48px 0;
}
.ytd-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ytd-header h2 {
  font-size: 1.8rem;
  margin: 0;
}
.ytd-header h2 span {
  color: var(--accent);
}
.ytd-day-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ytd-subtitle {
  text-align: center;
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ytd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ytd-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.2s;
}
.ytd-card:hover {
  background: rgba(255,255,255,0.12);
}
.ytd-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.ytd-card-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ytd-card-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 6px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ytd-card-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.ytd-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #FF6B6B;
  font-weight: 700;
}
@media (max-width: 768px) {
  .ytd-grid { grid-template-columns: repeat(2, 1fr); }
  .ytd-header h2 { font-size: 1.4rem; }
  .ytd-card-value { font-size: 1.3rem; }
}

.economy-hero {
  background: var(--green);
  color: #fff;
  padding: 64px 0 48px;
  text-align: center;
}
.economy-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.economy-hero h1 span {
  color: var(--accent);
}
.economy-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.snapshot-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.snapshot-card .snap-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.snapshot-card .snap-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}
.snapshot-card .snap-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.ban-cost-section {
  background: linear-gradient(135deg, #B03020 0%, #8B1A10 100%);
  color: #fff;
  padding: 56px 0;
}
.ban-cost-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.ban-cost-section .cost-subtitle {
  text-align: center;
  opacity: 0.8;
  margin-bottom: 32px;
  font-size: 1rem;
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  max-width: 560px;
  margin: 0 auto;
}
.cost-row:last-child { border-bottom: none; }
.cost-label {
  font-size: 0.95rem;
  opacity: 0.85;
}
.cost-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFD700;
}
.cost-highlight .cost-value {
  color: #FF6B6B;
  font-size: 1.3rem;
}

.breakdown-section {
  padding: 56px 0;
  background: var(--bg-alt);
}
.breakdown-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--green-dark);
}
.breakdown-bar {
  max-width: 640px;
  margin: 0 auto 16px;
}
.breakdown-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.breakdown-track {
  height: 28px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.breakdown-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--accent) 100%);
  border-radius: 14px;
  transition: width 1s ease;
}

.calc-section {
  padding: 56px 0;
  background: var(--bg-white);
}
.calc-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}
.calc-section .calc-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.calc-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.calc-form label {
  font-weight: 700;
  font-size: 0.95rem;
}
.calc-form input {
  width: 100px;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.calc-form input:focus {
  outline: none;
  border-color: var(--green);
}
.calc-output {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.calc-stat {
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 12px;
}
.calc-stat-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}
.calc-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

.top-states-section {
  padding: 56px 0;
  background: var(--bg-alt);
}
.top-states-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--green-dark);
}
.top-state-row {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.top-state-row:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.top-state-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.top-state-name {
  font-weight: 700;
  flex: 1;
}
.top-state-stat {
  font-weight: 800;
  color: var(--green);
  font-size: 0.95rem;
}
.top-state-jobs {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.econ-cta {
  background: var(--green);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.econ-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.econ-cta p {
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.state-econ-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.state-econ-section h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--green-dark);
}
.state-econ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 24px;
}
.state-econ-card {
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.state-econ-card .econ-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}
.state-econ-card .econ-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}
.state-ban-cost {
  text-align: center;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.state-ban-cost .ban-val {
  font-size: 1.3rem;
  font-weight: 900;
}
.state-ban-cost .ban-lbl {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}
.state-econ-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .ticker-grid { grid-template-columns: 1fr; gap: 12px; }
  .ticker-value { font-size: 1.6rem; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-output { grid-template-columns: repeat(2, 1fr); }
  .state-econ-grid { grid-template-columns: 1fr; }
  .economy-hero h1 { font-size: 1.8rem; }
}
