/* ========================================
   Modern Light Mode Landing Page
   ======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================
   News Site Header
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Utility Bar - top thin strip */
.utility-bar {
  background: #111827;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-date {
  font-weight: 400;
}

.utility-nav {
  display: flex;
  gap: 20px;
}

.utility-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s;
}

.utility-nav a:hover {
  color: #fff;
}

/* Masthead - main logo area */
.masthead {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.masthead-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masthead-logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.5px;
  text-transform: none;
}

.masthead-logo span {
  color: #e63946;
}

/* Trending Ticker */
.ticker-bar {
  background: #f9fafb;
  padding: 8px 0;
  border-bottom: 2px solid #e63946;
}

.ticker-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}

.ticker-badge {
  background: #e63946;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ticker-text {
  color: #374151;
  font-weight: 500;
  font-size: 13px;
}

/* ========================================
   Main Container
   ======================================== */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.article {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   Article Header
   ======================================== */

.article-header {
  padding: 36px 44px 8px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-tag {
  background: #fdf2f8;
  color: #be185d;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-separator {
  color: #d1d5db;
}

.article-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  color: #111827;
  border-left: 5px solid #e63946;
  padding-left: 20px;
  margin: 0 0 20px;
}

.article-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #6b7280;
  font-weight: 400;
  padding-left: 25px;
  font-style: italic;
}

/* ========================================
   Hero Image
   ======================================== */

.hero-image {
  margin: 0;
  padding: 0 44px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ========================================
   Article Body
   ======================================== */

.article-body {
  padding: 32px 44px 16px;
  font-size: 17px;
  line-height: 1.85;
  color: #374151;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body em {
  font-style: italic;
  color: #4b5563;
}

.article-body strong {
  color: #111827;
  font-weight: 700;
}

/* Stacked short lines */
.stacked-lines {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid #e5e7eb;
}

.stacked-lines p {
  margin-bottom: 4px;
  font-weight: 500;
  color: #1f2937;
}

.stacked-lines.fade-lines {
  border-left-color: #fca5a5;
}

.stacked-lines.fade-lines p {
  color: #991b1b;
  font-weight: 600;
}

.stacked-lines.questions {
  border-left-color: #c4b5fd;
  background: #f5f3ff;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.stacked-lines.questions p {
  color: #5b21b6;
  font-weight: 500;
  font-style: italic;
}

/* Emphasis text */
.emphasis-text {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 24px 0 16px;
}

/* Section divider */
.section-break {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e63946, #f87171);
  border-radius: 2px;
  margin: 36px 0;
}

/* Insight list */
.insight-list {
  margin: 24px 0;
  padding: 20px 24px;
  background: #f0fdf4;
  border-radius: 12px;
  border-left: 4px solid #16a34a;
}

.insight-list p {
  margin-bottom: 8px;
  color: #166534;
  font-weight: 500;
  padding-left: 8px;
  position: relative;
}

.insight-list p::before {
  content: '✓';
  position: absolute;
  left: -12px;
  color: #16a34a;
  font-weight: 700;
}

.insight-list p:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.highlight-box {
  background: #fef2f2;
  border-left: 4px solid #e63946;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

.highlight-box p {
  margin-bottom: 6px;
  color: #991b1b;
  font-weight: 600;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Closing text */
.closing-text {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-top: 8px;
}

/* ========================================
   CTA Button
   ======================================== */

.cta-wrapper {
  padding: 8px 44px 40px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 14px rgba(220, 38, 38, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-button:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(220, 38, 38, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta-button:active {
  transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
  color: #9ca3af;
}

/* ========================================
   Responsive
   ======================================== */

@media screen and (max-width: 768px) {
  .utility-nav {
    gap: 12px;
  }

  .utility-nav a {
    font-size: 10px;
  }

  .masthead {
    padding: 10px 0;
  }

  .masthead-logo {
    font-size: 22px;
  }

  .ticker-text {
    font-size: 12px;
  }

  .container {
    padding: 16px 12px 40px;
  }

  .article {
    border-radius: 12px;
  }

  .article-header {
    padding: 24px 24px 6px;
  }

  .article-title {
    font-size: 24px;
    padding-left: 16px;
    border-left-width: 4px;
  }

  .article-subtitle {
    font-size: 15px;
    padding-left: 20px;
  }

  .hero-image {
    padding: 0 24px;
  }

  .hero-image img {
    border-radius: 8px;
  }

  .article-body {
    padding: 24px 24px 12px;
    font-size: 16px;
  }

  .emphasis-text {
    font-size: 18px;
  }

  .cta-wrapper {
    padding: 8px 24px 32px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 480px) {
  .utility-nav a:nth-child(n+3) {
    display: none;
  }

  .utility-date {
    font-size: 11px;
  }

  .masthead {
    padding: 8px 0;
  }

  .masthead-logo {
    font-size: 20px;
  }

  .ticker-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .ticker-text {
    font-size: 11px;
  }

  .container {
    padding: 10px 8px 32px;
  }

  .article-header {
    padding: 20px 18px 4px;
  }

  .article-title {
    font-size: 21px;
    line-height: 1.35;
  }

  .article-subtitle {
    font-size: 14px;
    padding-left: 18px;
  }

  .hero-image {
    padding: 0 18px;
  }

  .article-meta {
    font-size: 12px;
  }

  .article-body {
    padding: 20px 18px 10px;
    font-size: 15px;
  }

  .emphasis-text {
    font-size: 17px;
  }

  .stacked-lines.questions {
    padding: 12px 16px;
  }

  .insight-list {
    padding: 16px 18px;
  }

  .highlight-box {
    padding: 16px 18px;
  }

  .cta-wrapper {
    padding: 8px 18px 28px;
  }

  .cta-button {
    font-size: 15px;
    padding: 15px 16px;
  }
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
