/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hn-orange: #ff6600;
    --hn-orange-dark: #cc5200;
    --bg-dark: #0d1117;
    --bg-darker: #010409;
    --bg-card: #161b22;
    --bg-card-hover: #1f2937;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --border-color: #30363d;
    --green: #3fb950;
    --red: #f85149;
    --yellow: #d29922;
    --blue: #58a6ff;
    --purple: #a371f7;
    --claude-purple: #9b59b6;
    --chatgpt-green: #10a37f;
    --deepseek-blue: #3498db;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 600px;
    background: radial-gradient(ellipse at center top, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--hn-orange);
    border-radius: 50px;
    color: var(--hn-orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--hn-orange) 0%, #ff9248 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-width: 140px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hn-orange);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 64px;
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.number-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.number-card:hover {
    transform: translateY(-4px);
    border-color: var(--hn-orange);
}

.number-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.number-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.number-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.number-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Top Stories */
.top-stories {
    max-width: 800px;
    margin: 0 auto;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: transform 0.2s, border-color 0.2s;
}

.story-item:hover {
    transform: translateX(8px);
    border-color: var(--hn-orange);
}

.story-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hn-orange);
    min-width: 40px;
    text-align: center;
}

.story-content {
    flex: 1;
}

.story-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.story-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.story-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(63, 185, 80, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

/* Languages Chart */
.languages-chart {
    max-width: 900px;
    margin: 0 auto;
}

.language-row {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.language-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.language-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.language-badge.hot {
    background: rgba(248, 81, 73, 0.2);
    color: var(--red);
}

.language-badge.growing {
    background: rgba(63, 185, 80, 0.2);
    color: var(--green);
}

.language-badge.stable {
    background: rgba(139, 148, 158, 0.2);
    color: var(--text-secondary);
}

.language-bar-container {
    height: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.language-bar {
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease-out;
}

.language-bar.zig {
    background: linear-gradient(90deg, #f7a41d 0%, #ff6600 100%);
}

.language-bar.rust {
    background: linear-gradient(90deg, #dea584 0%, #b7410e 100%);
}

.language-bar.ruby {
    background: linear-gradient(90deg, #cc342d 0%, #701516 100%);
}

.language-bar.python {
    background: linear-gradient(90deg, #3776ab 0%, #ffd43b 100%);
}

.language-bar.go {
    background: linear-gradient(90deg, #00add8 0%, #00758d 100%);
}

.language-stories {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Insight Box */
.insight-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--hn-orange);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.insight-box.warning {
    background: rgba(248, 81, 73, 0.1);
    border-color: var(--red);
}

.insight-icon {
    font-size: 1.5rem;
}

/* AI Grid */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s;
}

.ai-card:hover {
    transform: translateY(-4px);
}

.ai-card.emerging {
    border-left: 4px solid var(--green);
}

.ai-card.growing {
    border-left: 4px solid var(--blue);
}

.ai-card.stable {
    border-left: 4px solid var(--yellow);
}

.ai-card.declining {
    border-left: 4px solid var(--red);
}

.ai-trend {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.ai-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.ai-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.ai-growth {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.ai-card.declining .ai-growth {
    color: var(--red);
}

.ai-count {
    color: var(--text-secondary);
    align-self: flex-end;
}

.ai-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Models Race */
.models-race {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.model-track {
    display: grid;
    grid-template-columns: 180px 1fr 120px;
    align-items: center;
    gap: 24px;
}

.model-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.model-name {
    font-weight: 700;
    font-size: 1.25rem;
}

.model-name.claude {
    color: var(--claude-purple);
}

.model-name.chatgpt {
    color: var(--chatgpt-green);
}

.model-name.deepseek {
    color: var(--deepseek-blue);
}

.model-trend {
    font-size: 0.875rem;
    font-weight: 600;
}

.model-trend.up {
    color: var(--green);
}

.model-trend.down {
    color: var(--red);
}

.model-chart {
    height: 80px;
}

.month-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100%;
}

.month-bar {
    flex: 1;
    background: var(--border-color);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
    transition: background 0.3s;
}

.month-bar span {
    font-size: 0.6rem;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.month-bar.winner {
    background: linear-gradient(180deg, var(--hn-orange) 0%, var(--hn-orange-dark) 100%);
}

.month-bar.winner span {
    color: white;
    font-weight: 600;
}

.model-total {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Trends Container */
.trends-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 48px auto 0;
}

.trend-column {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.trend-header {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.trend-item:last-child {
    border-bottom: none;
}

.trend-name {
    font-weight: 500;
}

.trend-value {
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.trend-value.up {
    background: rgba(63, 185, 80, 0.2);
    color: var(--green);
}

.trend-value.down {
    background: rgba(248, 81, 73, 0.2);
    color: var(--red);
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.jobs-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.jobs-card h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-item {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.tech-name {
    font-weight: 500;
    font-size: 0.875rem;
}

.tech-bar-container {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.tech-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--hn-orange) 0%, var(--hn-orange-dark) 100%);
    border-radius: 4px;
}

.tech-percent {
    font-weight: 600;
    color: var(--hn-orange);
    font-size: 0.875rem;
    text-align: right;
}

/* Modality Chart */
.modality-chart {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.modality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.modality-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-color);
}

.modality-item.remote .modality-circle {
    border-color: var(--green);
    background: rgba(63, 185, 80, 0.1);
}

.modality-item.onsite .modality-circle {
    border-color: var(--blue);
    background: rgba(88, 166, 255, 0.1);
}

.modality-item.hybrid .modality-circle {
    border-color: var(--yellow);
    background: rgba(210, 153, 34, 0.1);
}

.modality-percent {
    font-size: 1.25rem;
    font-weight: 700;
}

.modality-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.modality-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Cities List */
.cities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.city-item:last-child {
    border-bottom: none;
}

.city-name {
    font-weight: 500;
}

.city-count {
    color: var(--hn-orange);
    font-weight: 600;
}

/* Level Chart */
.level-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level-item {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.level-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.level-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--green) 0%, #2ea043 100%);
    border-radius: 4px;
}

.level-item.junior .level-bar {
    background: linear-gradient(90deg, var(--red) 0%, #da3633 100%);
}

.level-percent {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: right;
}

/* Engagement Grid */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.engagement-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.engagement-card.viral-silent {
    border-top: 4px solid var(--blue);
}

.engagement-card.discussion-rich {
    border-top: 4px solid var(--green);
}

.engagement-card.polarizing {
    border-top: 4px solid var(--red);
}

.engagement-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.engagement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.engagement-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.engagement-example {
    background: var(--bg-darker);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.example-title {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.example-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.stat-score {
    color: var(--green);
    font-weight: 600;
}

.stat-comments {
    color: var(--text-muted);
}

.engagement-pattern {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Ask HN Grid */
.askhn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.askhn-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.askhn-card h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Question Types */
.question-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question-type {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.question-type:last-child {
    border-bottom: none;
}

.type-name {
    font-weight: 500;
}

.type-avg {
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
}

.type-count {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Viral Patterns */
.viral-patterns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.viral-patterns .pattern-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.viral-patterns .pattern-item:last-child {
    border-bottom: none;
}

.pattern-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.pattern-avg {
    color: var(--hn-orange);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Best Days */
.best-days {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.day-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-darker);
    border-radius: 8px;
}

.day-item.best {
    border-left: 3px solid var(--green);
}

.day-item.good {
    border-left: 3px solid var(--blue);
}

.day-item.normal {
    border-left: 3px solid var(--border-color);
}

.day-name {
    font-weight: 600;
}

.day-avg {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.day-insight {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Top Questions */
.top-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-score {
    background: var(--hn-orange);
    color: white;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 50px;
    text-align: center;
}

.top-title {
    font-size: 0.875rem;
    flex: 1;
}

/* Domains Container */
.domains-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.domains-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.domains-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.domains-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.domain-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.domain-item:last-child {
    border-bottom: none;
}

.domain-name {
    font-weight: 500;
}

.domain-avg, .domain-count {
    color: var(--hn-orange);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Title Patterns */
.title-patterns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.title-pattern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-darker);
    border-radius: 8px;
}

.title-pattern.good {
    border-left: 3px solid var(--green);
}

.title-pattern.neutral {
    border-left: 3px solid var(--border-color);
}

.pattern-label {
    font-weight: 500;
    font-size: 0.875rem;
}

.pattern-score {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Show HN Grid */
.showhn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.showhn-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.showhn-card h3 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.category-score {
    color: var(--hn-orange);
    font-weight: 600;
}

.pattern-list .pattern-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}

.pattern-check {
    color: var(--green);
    font-weight: bold;
}

.pattern-x {
    color: var(--red);
    font-weight: bold;
}

.pattern-list .pattern-item.bad span:last-child {
    color: var(--text-muted);
}

/* Hours Chart */
.hours-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
    margin-bottom: 16px;
}

.hour-bar {
    width: 40px;
    background: var(--border-color);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    transition: background 0.3s;
}

.hour-bar span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hour-bar.best {
    background: linear-gradient(180deg, var(--hn-orange) 0%, var(--hn-orange-dark) 100%);
}

.hour-bar.best span {
    color: white;
    font-weight: 600;
}

.hours-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Timeline */
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.timeline-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.timeline-month {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hn-orange);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-event {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.timeline-event.highlight {
    color: var(--hn-orange);
    font-weight: 600;
}

.timeline-viral {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Spotlight Section */
.spotlight {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 1px solid var(--hn-orange);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.spotlight-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--hn-orange);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.spotlight h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.spotlight-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 32px;
}

.spotlight-stat {
    display: flex;
    flex-direction: column;
}

.spotlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hn-orange);
}

.spotlight-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.spotlight-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.spotlight-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Key Takeaways */
.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.takeaway-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.takeaway-number {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--hn-orange);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.takeaway-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    margin-top: 8px;
}

.takeaway-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.hn-logo {
    width: 32px;
    height: 32px;
    background: var(--hn-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 700;
}

.footer-meta {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-meta a {
    color: var(--hn-orange);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .language-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .model-track {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trends-container {
        grid-template-columns: 1fr;
    }

    .spotlight {
        padding: 32px;
    }

    .spotlight-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-meta {
        text-align: center;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        width: 100%;
        max-width: none;
    }
}
