.jsf-shell {
  --jsf-teal: #53c9cc;
  --jsf-teal-deep: #18999e;
  --jsf-yellow: #ffcf3f;
  --jsf-ink: #1b2436;
  --jsf-muted: #6f7c96;
  --jsf-line: rgba(27, 36, 54, 0.08);
  --jsf-soft: #f6fafc;
  --jsf-panel: #ffffff;
  --jsf-shadow: 0 22px 60px rgba(52, 81, 116, 0.08);
  color: var(--jsf-ink);
  background:
    radial-gradient(circle at top right, rgba(83, 201, 204, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 207, 63, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, #f4f8fb 100%);
  border-radius: 36px;
  padding: 28px;
  box-shadow: var(--jsf-shadow);
  display: grid;
  gap: 22px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.jsf-shell * {
  box-sizing: border-box;
}

.jsf-topbar,
.jsf-stock-hero,
.jsf-overview-strip,
.jsf-research-grid,
.jsf-section-grid,
.jsf-analysis-grid,
.jsf-chart-grid,
.jsf-table-stack,
.jsf-price-line,
.jsf-quick-grid,
.jsf-pill-row,
.jsf-preset-row,
.jsf-check-grid {
  display: grid;
  gap: 18px;
}

.jsf-period-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f3f8fb;
  border: 1px solid var(--jsf-line);
}

.jsf-period-button {
  border: 0;
  background: transparent;
  color: var(--jsf-muted);
  font: inherit;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.jsf-period-button.is-active {
  background: linear-gradient(135deg, rgba(83, 201, 204, 0.18), rgba(255, 207, 63, 0.22));
  color: var(--jsf-ink);
  box-shadow: inset 0 0 0 1px rgba(83, 201, 204, 0.12);
}

.jsf-topbar {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: start;
}

.jsf-topbar h2,
.jsf-stock-main h3,
.jsf-verdict-card h3,
.jsf-panel h3 {
  margin: 0;
  color: var(--jsf-ink);
}

.jsf-topbar h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  max-width: 12ch;
  font-weight: 800;
  padding-bottom: 12px;
}

.jsf-brand-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  max-width: none;
  line-height: 1.08;
  padding-right: 18px;
  padding-bottom: 14px;
  overflow: visible;
}

.jsf-brand-dark {
  color: var(--jsf-ink);
}

.jsf-brand-accent {
  display: inline-block;
  padding-right: 6px;
  padding-bottom: 6px;
  background: linear-gradient(90deg, #b7cf67 0%, var(--jsf-teal) 55%, #7fd8dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jsf-brand-highlight {
  position: relative;
  color: var(--jsf-ink);
}

.jsf-brand-highlight::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -8px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(83, 201, 204, 0.58), rgba(255, 207, 63, 0.72));
  opacity: 0.9;
  z-index: -1;
}

.jsf-eyebrow,
.jsf-section-label {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--jsf-teal-deep);
}

.jsf-subtitle,
.jsf-muted,
.jsf-summary-copy,
.jsf-status-card p,
.jsf-label {
  color: var(--jsf-muted);
  line-height: 1.65;
}

.jsf-search-card,
.jsf-stock-main,
.jsf-verdict-card,
.jsf-panel,
.jsf-status-card,
.jsf-quick-card,
.jsf-highlight-card,
.jsf-check-card,
.jsf-chart-card,
.jsf-risk-item,
.jsf-point-item,
.jsf-reader-note {
  border: 1px solid var(--jsf-line);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(34, 56, 90, 0.05);
}

.jsf-search-card,
.jsf-stock-main,
.jsf-verdict-card,
.jsf-panel {
  padding: 24px;
  overflow: hidden;
}

.jsf-search-card {
  background:
    linear-gradient(180deg, rgba(83, 201, 204, 0.08), rgba(83, 201, 204, 0.03)),
    #ffffff;
}

.jsf-label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.jsf-input-row {
  display: flex;
  gap: 12px;
}

.jsf-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(83, 201, 204, 0.22);
  background: #fbfeff;
  color: var(--jsf-ink);
  font: inherit;
}

.jsf-input:focus {
  outline: none;
  border-color: var(--jsf-teal);
  box-shadow: 0 0 0 4px rgba(83, 201, 204, 0.14);
}

.jsf-button,
.jsf-preset {
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.jsf-button:hover,
.jsf-preset:hover {
  transform: translateY(-1px);
}

.jsf-button {
  padding: 14px 18px;
  color: #163135;
  background: linear-gradient(135deg, var(--jsf-yellow), #ffe287);
  box-shadow: 0 14px 30px rgba(255, 207, 63, 0.3);
}

.jsf-preset-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jsf-preset {
  padding: 10px 14px;
  color: var(--jsf-ink);
  background: #f3f8fb;
}

.jsf-status-card {
  margin-top: 16px;
  padding: 16px 18px;
}

.jsf-mode-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jsf-mode-live {
  background: rgba(83, 201, 204, 0.14);
  color: var(--jsf-teal-deep);
}

.jsf-mode-demo {
  background: rgba(255, 207, 63, 0.22);
  color: #7d6500;
}

.jsf-mode-error {
  background: rgba(237, 98, 98, 0.14);
  color: #bf4343;
}

.jsf-stock-hero {
  grid-template-columns: 1.3fr 0.8fr;
}

.jsf-overview-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jsf-highlight-card {
  padding: 20px;
}

.jsf-highlight-card strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.jsf-reader-note {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(83, 201, 204, 0.08), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.jsf-reader-note strong {
  display: block;
  margin-bottom: 4px;
}

.jsf-reader-note-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(83, 201, 204, 0.14);
  color: var(--jsf-teal-deep);
  font-weight: 800;
}

.jsf-stock-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.jsf-stock-avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(83, 201, 204, 0.28), rgba(255, 207, 63, 0.26));
  display: grid;
  place-items: center;
  color: var(--jsf-teal-deep);
  font-size: 24px;
  font-weight: 800;
}

.jsf-price-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.jsf-mini-label {
  display: block;
  color: var(--jsf-muted);
  font-size: 13px;
}

.jsf-price-line strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 2.4vw, 38px);
}

.jsf-quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.jsf-quick-card {
  padding: 18px;
}

.jsf-quick-card strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
}

.jsf-verdict-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(83, 201, 204, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

.jsf-verdict-visual {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.jsf-score-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(var(--jsf-teal) 0deg 220deg, rgba(83, 201, 204, 0.12) 220deg 360deg);
  display: grid;
  place-items: center;
}

.jsf-score-ring-inner {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
}

.jsf-score-ring-inner span {
  color: var(--jsf-muted);
  font-size: 13px;
}

.jsf-score-ring-inner strong {
  display: block;
  font-size: 38px;
}

.jsf-radar-card {
  padding: 18px 18px 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(83, 201, 204, 0.08), transparent 42%),
    linear-gradient(180deg, #f8fcfd 0%, #f3f8fb 100%);
  border: 1px solid rgba(83, 201, 204, 0.1);
}

.jsf-radar-head strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.jsf-radar-wrap {
  margin-top: 12px;
  overflow: visible;
}

.jsf-radar-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.jsf-radar-grid {
  fill: rgba(83, 201, 204, 0.04);
  stroke: rgba(27, 36, 54, 0.07);
}

.jsf-radar-axis {
  stroke: rgba(27, 36, 54, 0.1);
  stroke-width: 1;
}

.jsf-radar-shape {
  fill: url(#jsfRadarGradient);
  stroke: rgba(83, 201, 204, 0.9);
  stroke-width: 3;
}

.jsf-radar-point-shell {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 3;
}

.jsf-radar-point {
  fill: var(--jsf-teal);
  stroke: rgba(255, 207, 63, 0.95);
  stroke-width: 2;
}

.jsf-radar-label {
  fill: #47556f;
  font-size: 11px;
  font-weight: 800;
}

.jsf-radar-score {
  fill: #ffffff;
  font-size: 7px;
  font-weight: 800;
}

.jsf-pill-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jsf-score-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--jsf-line);
}

.jsf-score-pill-gauge {
  --deg: calc(var(--score) * 3.6deg);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--jsf-teal) 0deg, var(--jsf-yellow) var(--deg), #e9eef3 var(--deg), #e9eef3 360deg);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.jsf-score-pill-gauge span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--jsf-teal-deep);
  font-size: 16px;
  font-weight: 800;
}

.jsf-score-pill-copy span {
  display: block;
  color: var(--jsf-ink);
  font-size: 14px;
  font-weight: 800;
}

.jsf-score-pill-copy strong {
  display: block;
  margin-top: 4px;
  color: var(--jsf-teal-deep);
  font-size: 15px;
}

.jsf-section-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.jsf-analysis-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jsf-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.jsf-panel-head > div:first-child {
  display: grid;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.jsf-panel-note {
  margin: 0;
  color: var(--jsf-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jsf-dual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jsf-dual-list h4,
.jsf-table-stack h4,
.jsf-chart-card h4 {
  margin: 0 0 16px;
}

.jsf-point-list,
.jsf-risk-list,
.jsf-bars {
  display: grid;
  gap: 12px;
}

.jsf-point-item,
.jsf-risk-item {
  padding: 16px 18px;
}

.jsf-point-item {
  border-left: 4px solid var(--jsf-teal);
}

.jsf-point-item.jsf-bear {
  border-left-color: var(--jsf-yellow);
}

.jsf-risk-item strong {
  display: block;
  margin-bottom: 6px;
}

.jsf-risk-item.jsf-risk-low {
  background: rgba(83, 201, 204, 0.07);
}

.jsf-risk-item.jsf-risk-medium {
  background: rgba(255, 207, 63, 0.14);
}

.jsf-risk-item.jsf-risk-high {
  background: rgba(236, 110, 110, 0.08);
}

.jsf-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jsf-check-card {
  padding: 18px;
}

.jsf-check-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.jsf-check-head strong {
  font-size: 18px;
}

.jsf-check-badge {
  min-width: 70px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.jsf-pass {
  background: rgba(83, 201, 204, 0.14);
  color: var(--jsf-teal-deep);
}

.jsf-watch {
  background: rgba(255, 207, 63, 0.22);
  color: #7d6500;
}

.jsf-fail {
  background: rgba(237, 98, 98, 0.14);
  color: #b03f3f;
}

.jsf-neutral {
  background: #eef3f6;
  color: #6a768d;
}

.jsf-check-card p {
  margin: 10px 0 0;
  color: var(--jsf-muted);
  line-height: 1.6;
  font-size: 14px;
}

.jsf-chart-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jsf-chart-card {
  padding: 20px;
}

.jsf-chart-card-combo {
  overflow: hidden;
}

.jsf-metric-chart {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.jsf-metric-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 96px;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27, 36, 54, 0.08);
}

.jsf-metric-row:last-child {
  border-bottom: 0;
}

.jsf-metric-period {
  font-size: 13px;
  font-weight: 700;
  color: var(--jsf-ink);
}

.jsf-metric-bars {
  display: grid;
  gap: 12px;
}

.jsf-metric-group {
  display: grid;
  gap: 6px;
}

.jsf-metric-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}

.jsf-metric-top span {
  color: var(--jsf-muted);
}

.jsf-metric-top strong {
  color: var(--jsf-ink);
  font-size: 13px;
}

.jsf-metric-track {
  height: 10px;
  border-radius: 999px;
  background: #edf3f6;
  overflow: hidden;
}

.jsf-metric-fill {
  height: 100%;
  border-radius: inherit;
}

.jsf-metric-fill-main {
  background: linear-gradient(90deg, #7f5af0 0%, #5d35cb 100%);
}

.jsf-metric-fill-sub {
  background: linear-gradient(90deg, #5ab7ff 0%, #2484da 100%);
}

.jsf-metric-side {
  text-align: right;
}

.jsf-metric-side span {
  display: block;
  color: var(--jsf-muted);
  font-size: 12px;
}

.jsf-metric-side strong {
  display: block;
  margin-top: 4px;
  color: #2fb7b2;
  font-size: 16px;
}

.jsf-combo-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--jsf-muted);
  font-size: 13px;
}

.jsf-combo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jsf-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.jsf-legend-line {
  background: #7df2ef;
}

.jsf-legend-main {
  background: #6d46dd;
}

.jsf-legend-sub {
  background: #2894eb;
}

.jsf-bar-row {
  display: grid;
  gap: 6px;
}

.jsf-bar-row header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--jsf-muted);
  font-size: 13px;
}

.jsf-bar-track {
  height: 10px;
  border-radius: 999px;
  background: #eaf1f5;
  overflow: hidden;
}

.jsf-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jsf-teal), var(--jsf-yellow));
}

.jsf-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.jsf-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.jsf-table th,
.jsf-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--jsf-line);
  text-align: left;
  font-size: 14px;
}

.jsf-table th {
  background: #f5fafb;
  color: var(--jsf-teal-deep);
  font-weight: 800;
}

.jsf-table tr:last-child td {
  border-bottom: 0;
}

.jsf-delta {
  font-weight: 800;
}

.jsf-delta.is-up {
  color: #11876d;
}

.jsf-delta.is-down {
  color: #d06d2d;
}

.jsf-delta.is-flat {
  color: var(--jsf-muted);
}

.jsf-research-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jsf-research-grid > .jsf-panel,
.jsf-section-grid > .jsf-panel,
.jsf-analysis-grid > .jsf-panel {
  min-width: 0;
}

.jsf-research-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.jsf-research-intro p {
  margin: 8px 0 0;
  color: var(--jsf-muted);
  line-height: 1.7;
}

.jsf-research-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.jsf-research-kpi {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--jsf-line);
}

.jsf-research-kpi span,
.jsf-research-table td span,
.jsf-dividend-chart-head span {
  display: block;
  color: var(--jsf-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jsf-research-kpi strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.jsf-research-kpi em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
}

.jsf-research-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--jsf-line);
  border-radius: 24px;
  background: #ffffff;
}

.jsf-research-table th,
.jsf-research-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--jsf-line);
  vertical-align: top;
}

.jsf-research-table th {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef7f8 100%);
  color: var(--jsf-teal-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jsf-research-table td {
  font-size: 15px;
  color: var(--jsf-ink);
}

.jsf-research-table td strong {
  display: block;
  font-size: 16px;
  color: var(--jsf-ink);
}

.jsf-research-table tbody tr:last-child td {
  border-bottom: 0;
}

.jsf-research-table tbody tr:hover td {
  background: rgba(83, 201, 204, 0.03);
}

.jsf-cashflow-table {
  table-layout: auto;
}

.jsf-cashflow-table th,
.jsf-cashflow-table td {
  white-space: nowrap;
}

.jsf-cashflow-table th:first-child,
.jsf-cashflow-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 230px;
  white-space: normal;
  background: #ffffff;
}

.jsf-cashflow-table th:first-child {
  z-index: 2;
  background: linear-gradient(180deg, #f7fbfd 0%, #eef7f8 100%);
}

.jsf-cashflow-table tbody tr:nth-child(even) td {
  background: rgba(246, 250, 252, 0.65);
}

.jsf-cashflow-table tbody tr:nth-child(even) td:first-child {
  background: rgba(246, 250, 252, 0.95);
}

.jsf-breakdown-table td:first-child {
  min-width: 300px;
}

.jsf-breakdown-bar {
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: #edf3f6;
  overflow: hidden;
}

.jsf-breakdown-bar span {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jsf-teal), var(--jsf-yellow));
}

.jsf-breakdown-table tr.is-total td {
  background: #f7fbfd;
  font-weight: 800;
}

.jsf-dividend-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.jsf-dividend-metrics,
.jsf-dividend-chart {
  border: 1px solid var(--jsf-line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
  padding: 22px;
}

.jsf-dividend-note strong,
.jsf-dividend-chart-head strong {
  display: block;
  font-size: 22px;
}

.jsf-dividend-note p {
  margin: 10px 0 18px;
  color: var(--jsf-muted);
  line-height: 1.7;
}

.jsf-dividend-metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--jsf-line);
}

.jsf-dividend-metric:first-of-type {
  border-top: 0;
}

.jsf-dividend-metric strong {
  font-size: 18px;
  text-align: right;
}

.jsf-dividend-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  min-height: 300px;
  margin-top: 26px;
}

.jsf-dividend-bar-item {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.jsf-dividend-bar-wrap {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0 10px;
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(180deg, rgba(83, 201, 204, 0.04), rgba(83, 201, 204, 0)),
    repeating-linear-gradient(
      to top,
      rgba(27, 36, 54, 0.06) 0,
      rgba(27, 36, 54, 0.06) 1px,
      transparent 1px,
      transparent 56px
    );
}

.jsf-dividend-bar {
  display: block;
  width: 100%;
  min-height: 12px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, rgba(83, 201, 204, 0.88), rgba(83, 201, 204, 0.52));
  box-shadow: 0 16px 30px rgba(83, 201, 204, 0.14);
}

.jsf-dividend-bar-item strong {
  font-size: 16px;
}

.jsf-ownership-layout {
  display: grid;
  gap: 18px;
}

.jsf-ownership-summary {
  display: grid;
  gap: 18px;
}

.jsf-ownership-empty {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid var(--jsf-line);
}

.jsf-ownership-empty strong {
  display: block;
  margin-bottom: 8px;
}

.jsf-disclaimer {
  padding: 4px 6px 0;
  color: var(--jsf-muted);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .jsf-topbar,
  .jsf-stock-hero,
  .jsf-overview-strip,
  .jsf-research-grid,
  .jsf-dividend-layout,
  .jsf-section-grid,
  .jsf-chart-grid {
    grid-template-columns: 1fr;
  }

  .jsf-analysis-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1380px) {
  .jsf-research-grid {
    grid-template-columns: 1fr;
  }

  .jsf-research-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jsf-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .jsf-input-row,
  .jsf-price-line,
  .jsf-dual-list {
    grid-template-columns: 1fr;
    display: grid;
  }

  .jsf-preset-row,
  .jsf-quick-grid,
  .jsf-overview-strip,
  .jsf-research-kpis,
  .jsf-pill-row,
  .jsf-check-grid,
  .jsf-analysis-grid {
    grid-template-columns: 1fr;
  }

  .jsf-metric-row {
    grid-template-columns: 1fr;
  }

  .jsf-metric-side {
    text-align: left;
  }

  .jsf-verdict-visual {
    grid-template-columns: 1fr;
  }

  .jsf-score-ring {
    margin: 0 auto;
  }

  .jsf-panel-head {
    display: grid;
    gap: 14px;
  }

  .jsf-dividend-bars {
    grid-template-columns: repeat(5, minmax(64px, 1fr));
    overflow-x: auto;
  }

  .jsf-cashflow-table th,
  .jsf-cashflow-table td {
    white-space: normal;
    min-width: 140px;
    padding: 14px 12px;
  }

  .jsf-cashflow-table th:first-child,
  .jsf-cashflow-table td:first-child {
    position: static;
    min-width: 170px;
  }

  .jsf-research-table th,
  .jsf-research-table td,
  .jsf-table th,
  .jsf-table td {
    font-size: 13px;
    padding: 12px 12px;
  }
}
