.stock-hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-subtle) 40%, var(--bg) 100%);
    padding: 3rem 1rem 2.5rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
    position: relative;
    overflow: hidden;
}
.stock-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.stock-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.stock-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.stock-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.stock-info h1 .ticker {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stock-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.stock-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.stock-meta span:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
    margin-left: 0.5rem;
}
.header-badges {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.price-badge {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--blue-soft));
}
.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.price-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.score-badge {
    background: var(--card);
    border: 2px solid;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.score-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}
.score-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.score-value {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.score-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-generate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: #022c22;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
    font-size: 15px;
    border: none;
    cursor: pointer;
}
.btn-generate:disabled {
    opacity: 0.7;
    cursor: wait;
}
.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    filter: brightness(1.05);
}
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(148, 163, 184, 0.06);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}
.hero-btn-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.25);
}
.metrics-section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.sp-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}
.sp-section-title svg {
    color: var(--accent);
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}
.metric-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, transparent 60%);
    pointer-events: none;
}
.metric-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.metric-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.metric-value.positive { color: var(--accent-soft); }
.metric-value.negative { color: var(--red-soft); }
.metric-value.neutral { color: var(--yellow); }
.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
}
.ai-summary {
    background: var(--card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.ai-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}
.summary-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}
.summary-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.factor-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.factor-chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.factor-chip.positive {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-soft);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.factor-chip.negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-soft);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.factor-chip.neutral {
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border: 1px solid rgba(234, 179, 8, 0.2);
}
.report-preview {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.preview-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}
.preview-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.preview-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}
.preview-header svg {
    color: var(--accent);
}
.preview-title {
    font-weight: 700;
    color: var(--text-main);
}
.preview-subtitle {
    font-size: 0.8rem;
    color: var(--text-dim);
}
.preview-content {
    margin-bottom: 1.5rem;
}
.preview-score-display {
    text-align: center;
    margin-bottom: 1.5rem;
}
.preview-score {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.preview-score-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.preview-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}
.preview-includes li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.preview-includes li::before {
    content: "\\2713";
    color: var(--accent);
    font-weight: bold;
}
.preview-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--accent-gradient);
    color: #022c22;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
    font-size: 15px;
}
.preview-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    filter: brightness(1.05);
}
.related-section {
    padding: 3rem 1rem;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
}
.related-tickers {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.related-ticker {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.related-ticker:hover {
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.08);
    color: var(--accent);
    transform: translateY(-1px);
}
.faq-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.25s;
}
.faq-item:hover {
    border-color: rgba(148, 163, 184, 0.2);
}
.faq-item.open {
    border-color: var(--border-accent);
}
.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}
.faq-question:hover {
    background: rgba(34, 197, 94, 0.03);
}
.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
}
.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dim);
}
.internal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
    border-top: 1px solid var(--border);
}
.internal-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.internal-links a:hover {
    color: var(--accent);
}
.seo-content {
    padding: 2rem 1rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.seo-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}
.seo-section:last-child {
    border-bottom: none;
}
.seo-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}
.seo-section h2::before {
    content: "";
    width: 4px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 2px;
    flex-shrink: 0;
}
.seo-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}
.seo-text p {
    margin-bottom: 1rem;
}
.seo-text strong {
    color: var(--text-secondary);
}
.seo-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.seo-text li {
    margin-bottom: 0.5rem;
}
.signal-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}
.signal-buy {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-soft);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.signal-hold {
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border: 1px solid rgba(234, 179, 8, 0.2);
}
.signal-sell {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-soft);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.video-section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.video-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.video-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}
.video-wrapper video {
    width: 100%;
    display: block;
}
.sp-unique-section {
    padding: 2.5rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}
.sp-unique-section + .sp-unique-section {
    border-top: 1px solid var(--border-light);
}
.sp-unique-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}
.sp-unique-section h2 svg {
    color: var(--accent);
    flex-shrink: 0;
}
.reason-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reason-list li {
    padding: 0.85rem 1.25rem;
    margin-bottom: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.reason-list li:hover {
    border-color: var(--border-accent);
    background: var(--card-hover);
}
.reason-list li::before {
    content: "→ ";
    color: var(--accent);
    font-weight: 700;
}
.catalyst-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    transition: all 0.2s;
}
.catalyst-card:hover {
    border-color: rgba(234, 179, 8, 0.3);
    background: var(--card-hover);
}
.catalyst-card .catalyst-icon {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 2px;
}
.peer-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.peer-table th {
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}
.peer-table td {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
}
.peer-table tr.current-stock td {
    background: rgba(34, 197, 94, 0.06);
    font-weight: 600;
    color: var(--text-main);
}
.peer-table tr:hover td {
    background: rgba(34, 197, 94, 0.03);
}
.risk-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red-soft);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.risk-item:hover {
    background: var(--card-hover);
}
.valuation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.valuation-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.valuation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
}
.valuation-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}
.valuation-card .val-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.valuation-card .val-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.valuation-card .val-context {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.range-bar-container {
    margin-top: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}
.range-bar-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.range-bar {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg, var(--red-soft), var(--yellow), var(--accent-soft));
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.range-bar .range-marker {
    position: absolute;
    top: -6px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.range-bar-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.sp-learn-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-learn-card:hover {
    border-color: var(--border-accent);
    background: var(--card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.sp-learn-card strong {
    color: var(--text-main);
    font-weight: 700;
}
.sp-learn-card p {
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
    color: var(--text-muted);
}
.sp-tool-link {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}
.sp-tool-link:hover {
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.06);
    color: var(--accent);
    transform: translateY(-1px);
}
.sp-meta-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.sp-meta-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}
.sp-meta-links a:hover {
    color: var(--accent);
}
.sp-meta-links .sep {
    color: var(--border);
}
.sp-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    background: var(--bg-subtle);
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}
.sp-byline img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.sp-byline a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--border);
}
.sp-byline a:hover {
    color: var(--accent);
}
.sp-byline .sp-byline-main {
    color: var(--text-muted);
}
.sp-byline .sp-byline-main strong {
    color: var(--text-main);
}
.sp-disclaimer-bar {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}
.sp-disclaimer-bar p {
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1rem;
}
@media (max-width: 768px) {
    .stock-info h1 {
        font-size: 1.75rem;
    }
    .stock-header {
        flex-direction: column;
    }
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .peer-table {
        font-size: 0.8rem;
    }
    .peer-table th, .peer-table td {
        padding: 0.5rem;
    }
    .valuation-grid {
        grid-template-columns: 1fr 1fr;
    }
    .header-badges {
        width: 100%;
    }
    .price-badge, .score-badge {
        flex: 1;
    }
}
