:root {
  --bg: #f4f5f7;
  --card: #ffffff;
  --text: #101418;
  --muted: #6b7280;
  --line: #e6e8ec;
  --brand: #c1121f;
  --brand-dark: #8f0d16;
  --dark: #0b0f14;
  --dark-soft: #141a22;
  --shadow: 0 14px 40px rgba(10, 15, 20, 0.08);
  --max: 1380px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}
.ticker {
  background: linear-gradient(90deg, var(--brand), #ef4444);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  min-width: 200%;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  animation: tickerMove 28s linear infinite;
  text-transform: uppercase;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.04em;
}
.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #f04d59);
  color: white;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 2px;
}
.search-wrap { position: relative; }
.search-wrap input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 14px 18px 14px 46px;
  outline: none;
  transition: .2s border, .2s box-shadow;
}
.search-wrap input:focus {
  border-color: #f8b4bb;
  box-shadow: 0 0 0 4px rgba(193,18,31,.1);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  border: 0;
  border-radius: 15px;
  padding: 12px 16px;
  cursor: pointer;
  transition: .18s transform, .18s opacity;
  font-weight: 800;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #ef4444);
}
.btn-dark { color: white; background: var(--dark); }
.btn-ghost {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 0 14px;
}
nav { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-link {
  border: 1px solid transparent;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-soft);
}
.nav-link:hover, .nav-link.active {
  color: var(--brand);
  background: #fff1f2;
  border-color: #fecdd3;
}
.mobile-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 14px;
}
.page { padding: 22px 0 42px; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, .9fr);
  gap: 24px;
  align-items: start;
}
.hero {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 460px;
}
.hero-media { position: relative; min-height: 360px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.52));
}
.hero-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(180deg, #fff, #fff7f7);
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -.03em;
}
.muted { color: var(--muted); }
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.chip {
  border: 1px solid var(--line);
  background: white;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.chip.active {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .18s transform, .18s box-shadow;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(10, 15, 20, 0.1);
}
.card-media { aspect-ratio: 16 / 10; background: #e5e7eb; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card-body h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.62;
}
.sidebar-stack {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 126px;
}
.widget {
  background: var(--card);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.widget h3 { margin: 0 0 14px; font-size: 18px; letter-spacing: -.02em; }
.trend-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.trend-item:first-child { border-top: 0; padding-top: 0; }
.trend-num {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  color: var(--brand);
  font-weight: 900;
}
.trend-item strong { display: block; line-height: 1.35; }
.trend-item span { color: var(--muted); font-size: 13px; }
.newsletter {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: white;
}
.newsletter p { color: rgba(255,255,255,.72); }
.newsletter form { display: grid; gap: 10px; }
.newsletter input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.stat {
  background: #fff7f7;
  border: 1px solid #ffe4e6;
  border-radius: 18px;
  padding: 14px;
}
.stat strong { display: block; font-size: 25px; letter-spacing: -.05em; }
.stat span { color: var(--muted); font-size: 12px; }
.footer {
  margin-top: 34px;
  background: #0b1018;
  color: white;
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 24px;
}
.footer h4 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .08em;
}
.footer p, .footer li { color: rgba(255,255,255,.72); }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.article-page {
  padding: 30px 0 50px;
}
.article-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-cover {
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-content {
  padding: 28px;
}
.article-content h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.article-content p {
  color: #374151;
  line-height: 1.9;
  font-size: 18px;
  margin: 0 0 18px;
}
.article-content .summary {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--brand);
}
@media (max-width: 1120px) {
  .header-top, .layout, .hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .sidebar-stack { position: static; }
  .header-actions { justify-content: flex-start; }
}
@media (max-width: 780px) {
  .cards, .stats { grid-template-columns: 1fr; }
  .nav-row { display: none; }
  .mobile-actions { display: grid; }
  .hero-copy, .article-content { padding: 18px; }
  .card-body h3 { font-size: 19px; }
  .brand { font-size: 22px; }
}