<style>
.home-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background-image: url('/images/home-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111827;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-content p {
  color: #e2e8f0;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 200px;
}

.home-intro {
  background: var(--bg-white);
  padding: 80px 24px;
}

.intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.intro-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.timeline-section {
  background: var(--bg-gray);
  padding: 80px 24px;
}

.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.timeline-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.timeline-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-brand);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 20px;
  height: 20px;
  background: var(--color-brand);
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.timeline-card {
  width: 44%;
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}

.timeline-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
}

.timeline-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(29, 78, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.timeline-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-brand);
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.timeline-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-card-count {
  display: inline-block;
  background: rgba(29, 78, 216, 0.08);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

.stats-section {
  background: var(--color-brand);
  padding: 60px 24px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.articles-section {
  background: var(--bg-white);
  padding: 80px 24px;
}

.articles-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.articles-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.articles-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.articles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s, transform 0.15s;
}

.article-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.article-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 24px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.article-card-category {
  color: var(--color-brand);
  font-weight: 700;
}

.article-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-card-body h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.article-card-body h3 a:hover {
  color: var(--color-brand);
}

.article-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-time svg {
  width: 14px;
  height: 14px;
}

.featured-article {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 12px;
}

.featured-article .article-card-image {
  aspect-ratio: auto;
  min-height: 100%;
}

.featured-article .article-card-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article .article-card-body h3 {
  font-size: 1.5rem;
}

.featured-article .article-card-body p {
  font-size: 1rem;
}

.newsletter-section {
  background: #0f172a;
  padding: 80px 24px;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: 12px;
}

.newsletter-content p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #334155;
  border-radius: 6px;
  background: #1e293b;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.newsletter-form input[type="email"]::placeholder {
  color: #64748b;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 1px;
  border-color: transparent;
}

.newsletter-form button {
  padding: 14px 24px;
  background: var(--color-cta);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #ea580c;
}

.newsletter-note {
  color: #475569;
  font-size: 12px;
  margin-top: 12px;
}

.cta-morphing {
  position: relative;
  overflow: hidden;
}

.cta-morphing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.cta-morphing:active::after {
  width: 300px;
  height: 300px;
}

.gauge-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.gauge-fill {
  height: 100%;
  background: var(--color-brand);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}

.counter-pulse {
  animation: counterPulse 2s infinite;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 500px;
    padding: 100px 16px 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-visual {
    order: -1;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
    top: 24px;
    transform: translateX(-50%);
  }

  .timeline-card {
    width: 100%;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    margin: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article .article-card-image {
    aspect-ratio: 16/9;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 450px;
    padding: 80px 16px 48px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .timeline-card {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
</style>

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .home-hero {
    min-height: 520px;
    padding: 100px 24px 60px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .intro-grid {
    gap: 40px;
  }

  .intro-text h2 {
    font-size: 1.75rem;
  }

  .timeline-card {
    width: 42%;
    padding: 24px;
  }

  .timeline-item {
    margin-bottom: 36px;
  }

  .timeline-header {
    margin: 0 auto 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .featured-article {
    grid-template-columns: 1.1fr 1fr;
  }

  .featured-article .article-card-body {
    padding: 28px;
  }

  .featured-article .article-card-body h3 {
    font-size: 1.375rem;
  }

  .newsletter-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 480px;
    padding: 80px 16px 56px;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

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

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }

  .home-intro {
    padding: 60px 16px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-visual {
    order: -1;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .timeline-section {
    padding: 60px 16px;
  }

  .timeline-header {
    margin: 0 auto 40px;
  }

  .timeline-header h2 {
    font-size: 1.75rem;
  }

  .timeline-line {
    left: 16px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 48px;
    margin-bottom: 32px;
  }

  .timeline-dot {
    left: 16px;
    top: 0;
    transform: translateX(-50%);
  }

  .timeline-card {
    width: 100%;
    padding: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-card h3 {
    font-size: 1.125rem;
  }

  .timeline-card p {
    font-size: 0.875rem;
  }

  .stats-section {
    padding: 48px 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .articles-section {
    padding: 60px 16px;
  }

  .articles-header {
    margin: 0 auto 36px;
  }

  .articles-header h2 {
    font-size: 1.75rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-card-body {
    padding: 20px;
  }

  .article-card-body h3 {
    font-size: 1rem;
  }

  .article-card-body p {
    font-size: 0.875rem;
  }

  .article-card-footer {
    padding: 14px 20px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article .article-card-image {
    aspect-ratio: 16/9;
  }

  .featured-article .article-card-body {
    padding: 24px;
  }

  .featured-article .article-card-body h3 {
    font-size: 1.25rem;
  }

  .featured-article .article-card-body p {
    font-size: 0.9375rem;
  }

  .newsletter-section {
    padding: 60px 16px;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-content p {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input[type="email"] {
    padding: 12px 16px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 420px;
    padding: 72px 12px 40px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    max-width: 280px;
  }

  .home-intro {
    padding: 48px 12px;
  }

  .intro-text h2 {
    font-size: 1.375rem;
  }

  .intro-text p {
    font-size: 0.9375rem;
  }

  .timeline-section {
    padding: 48px 12px;
  }

  .timeline-header h2 {
    font-size: 1.5rem;
  }

  .timeline-header p {
    font-size: 0.9375rem;
  }

  .timeline-container {
    padding-left: 0;
  }

  .timeline-line {
    left: 12px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 40px;
    margin-bottom: 24px;
  }

  .timeline-dot {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .timeline-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .timeline-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .timeline-card p {
    font-size: 0.8125rem;
  }

  .stats-section {
    padding: 40px 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: 1.75rem;
    margin-bottom: 4px;
  }

  .articles-section {
    padding: 48px 12px;
  }

  .articles-header {
    margin: 0 auto 28px;
  }

  .articles-header h2 {
    font-size: 1.5rem;
  }

  .articles-header p {
    font-size: 0.9375rem;
  }

  .articles-grid {
    gap: 20px;
  }

  .article-card-image {
    aspect-ratio: 16/9;
  }

  .article-card-body {
    padding: 16px;
  }

  .article-card-meta {
    font-size: 0.75rem;
    gap: 8px;
    margin-bottom: 8px;
  }

  .article-card-body h3 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }

  .article-card-body p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .article-card-footer {
    padding: 12px 16px;
    font-size: 0.75rem;
  }

  .read-time svg {
    width: 12px;
    height: 12px;
  }

  .featured-article {
    border-radius: 8px;
  }

  .featured-article .article-card-body {
    padding: 16px;
  }

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

  .featured-article .article-card-body p {
    font-size: 0.875rem;
  }

  .newsletter-section {
    padding: 48px 12px;
  }

  .newsletter-content h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .newsletter-content p {
    font-size: 0.8125rem;
    margin-bottom: 20px;
  }

  .newsletter-form input[type="email"] {
    padding: 12px 14px;
    font-size: 14px;
  }

  .newsletter-form button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .newsletter-note {
    font-size: 11px;
  }
}