﻿:root {
  --bg: #07101f;
  --surface: #132742;
  --surface-strong: #173459;
  --text: #e8f1ff;
  --text-muted: #9fb2ce;
  --text-soft: #7f93af;
  --primary: #7de3ff;
  --primary-strong: #18c8ff;
  --secondary: #8f81ff;
  --line: rgba(125, 227, 255, 0.14);
  --line-strong: rgba(125, 227, 255, 0.28);
  --shadow: 0 24px 60px rgba(1, 8, 18, 0.45);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100vw - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(24, 200, 255, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(143, 129, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #050d19 0%, #07101f 40%, #081423 100%);
  color: var(--text);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 85%);
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(125,227,255,0.06);
  color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(143,129,255,0.7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143,129,255,0.7); transform: scale(0.96); }
  70% { box-shadow: 0 0 0 12px rgba(143,129,255,0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(143,129,255,0); transform: scale(0.96); }
}
.site-header {
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px);
  background: rgba(5,13,25,0.78); border-bottom: 1px solid rgba(125,227,255,0.08);
}
.reading-progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); }
.reading-progress-bar { width: 0; height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.nav-shell { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; min-height: 82px; }
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-mark { font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.04em; }
.brand-subtitle { color: var(--text-soft); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.main-nav { display: flex; justify-content: center; gap: 28px; }
.main-nav a { position: relative; color: var(--text-muted); font-size: 14px; font-weight: 600; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after, .main-nav a:hover::after {
  content: ""; position: absolute; left: 0; bottom: -10px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px;
  background: transparent; color: var(--text); cursor: pointer;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 700; transition: 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #042032; box-shadow: 0 16px 30px rgba(24,200,255,0.22);
}
.button.ghost { border-color: var(--line-strong); background: rgba(125,227,255,0.06); color: var(--primary); }
.hero { padding: 72px 0 36px; }
.hero-grid, .two-column, .content-grid, .article-layout, .feature-grid, .triple-grid, .quad-grid, .pros-cons, .fact-grid {
  display: grid; gap: 24px;
}
.hero-grid { grid-template-columns: 1.35fr 0.75fr; align-items: stretch; }
.home-hero {
  padding: 84px 0 44px;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 32px;
  align-items: stretch;
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.brand-tone {
  color: var(--text);
}
.home-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(44px, 5.6vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.home-hero-copy p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.72;
}
.home-summary-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.home-summary-bar div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.home-summary-bar strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
}
.home-summary-bar span {
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.home-stat-card {
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(22, 44, 73, 0.88), rgba(10, 20, 36, 0.94)),
    radial-gradient(circle at top right, rgba(125, 227, 255, 0.08), transparent 45%);
  box-shadow: var(--shadow);
}
.home-stat-card strong {
  display: block;
  margin: 10px 0 10px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.home-stat-card p {
  line-height: 1.6;
}
.home-feature-card {
  min-height: 100%;
  aspect-ratio: 0.84 / 1;
}
.home-feature-card .hero-overlay {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.04), rgba(7, 16, 31, 0.84) 62%, rgba(7, 16, 31, 0.96) 100%),
    linear-gradient(140deg, rgba(125, 227, 255, 0.06), transparent 36%);
}
.home-feature-card .hero-overlay h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-feature-card .hero-overlay p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-copy h1, .page-hero h1, .article-hero h1 {
  margin: 18px 0; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(40px, 6vw, 74px); line-height: 0.94; letter-spacing: -0.05em;
}
.hero-copy p, .page-hero p, .article-deck { max-width: 760px; color: var(--text-muted); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.glass-card, .panel, .story-card, .stat-card, .list-card, .quote-card, .category-card, .review-card, .table-shell, .newsletter-card, .sidebar-card, .timeline-card, .metric-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19,39,66,0.92), rgba(10,21,37,0.94));
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}
.glass-card { position: relative; overflow: hidden; padding: 28px; background: linear-gradient(180deg, rgba(19,39,66,0.72), rgba(10,21,37,0.92)); backdrop-filter: blur(18px); }
.hero-visual { min-height: 520px; padding: 0; overflow: hidden; }
.hero-visual img, .media-cover img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(7,16,31,0.12), rgba(7,16,31,0.9)), linear-gradient(120deg, rgba(125,227,255,0.08), transparent 36%);
}
.hero-overlay h2 {
  margin: 12px 0 10px; max-width: 580px; font-size: clamp(28px, 4vw, 54px);
  line-height: 0.96; letter-spacing: -0.04em; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
}
.muted { color: var(--text-muted); }
.small { font-size: 13px; }
.micro { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif; font-size: clamp(28px, 4vw, 42px); line-height: 1; letter-spacing: -0.04em; }
.section-heading p { max-width: 620px; margin: 12px 0 0; color: var(--text-muted); }
.headline-link { color: var(--primary); font-weight: 700; font-size: 14px; }
.feature-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.story-card { overflow: hidden; }
.story-card.large { min-height: 480px; position: relative; }
.story-card .media-cover { height: 240px; }
.story-card.large .media-cover { height: 100%; min-height: 480px; }
.story-copy { padding: 24px; }
.story-card.large .story-copy { position: absolute; inset: auto 0 0 0; background: linear-gradient(180deg, rgba(7,16,31,0), rgba(7,16,31,0.94) 60%); }
.story-copy h3 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.story-copy p {
  margin: 0;
}
.story-card.large .story-copy {
  padding: 28px;
}
.story-card.large .story-copy h3 {
  max-width: 620px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.story-card.large .story-copy p {
  max-width: 560px;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-row, .chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tag, .chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(125,227,255,0.06); color: var(--text); font-size: 12px; font-weight: 600;
}
.tag.primary, .chip.primary { color: var(--primary); }
.tag.secondary, .chip.secondary { color: #c5bbff; background: rgba(143,129,255,0.1); }
.quad-grid { grid-template-columns: repeat(4, 1fr); }
.triple-grid { grid-template-columns: repeat(3, 1fr); }
.two-column { grid-template-columns: 1fr 1fr; }
.content-grid { grid-template-columns: 1.25fr 0.75fr; }
.pros-cons { grid-template-columns: 1fr 1fr; }
.fact-grid { grid-template-columns: repeat(2, 1fr); }
.stat-card, .metric-card, .category-card, .review-card, .sidebar-card, .timeline-card, .list-card, .panel { padding: 24px; }
.stat-card strong, .metric-card strong {
  display: block; margin-bottom: 10px; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 34px; line-height: 1; letter-spacing: -0.04em; color: var(--primary);
}
.list-card ul, .sidebar-card ul, .timeline-list { margin: 0; padding: 0; list-style: none; }
.list-card li, .sidebar-card li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.list-card li:last-child, .sidebar-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.page-hero, .article-hero { padding: 56px 0 24px; }
.page-hero-shell, .newsletter-card { padding: 34px; }
.page-hero-shell { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; }
.page-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; color: var(--text-muted); font-size: 14px; }
.article-media { margin-top: 28px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); min-height: 360px; }
.article-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.article-layout { grid-template-columns: 280px minmax(0, 1fr); align-items: start; }
.article-sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
.article-prose { max-width: 760px; }
.article-prose h2, .article-prose h3, .article-sidebar .sidebar-card h3 { font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif; }
.article-prose p { margin: 0 0 24px; color: var(--text-muted); font-size: 18px; }
.article-prose h2 { margin: 48px 0 16px; font-size: 36px; line-height: 1; letter-spacing: -0.04em; }
.lead-note {
  margin-bottom: 34px; padding: 24px 28px; border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0; background: rgba(125,227,255,0.06);
  color: var(--text); font-size: 22px; line-height: 1.5;
}
.quote-card { margin: 42px 0; padding: 32px; text-align: center; }
.quote-card blockquote {
  margin: 0; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif; font-size: clamp(24px, 4vw, 38px);
  line-height: 1.12; letter-spacing: -0.04em;
}
.quote-card cite { display: block; margin-top: 16px; color: var(--text-soft); font-style: normal; }
.fact-card { padding: 18px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: rgba(255,255,255,0.03); }
.fact-card strong { display: block; margin-bottom: 8px; color: var(--primary); }
.score-ring {
  width: 136px; height: 136px; margin: 0 auto 18px; border-radius: 50%; border: 8px solid rgba(125,227,255,0.15);
  display: grid; place-items: center; position: relative;
}
.score-ring::after {
  content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 8px solid var(--primary);
  border-right-color: transparent; transform: rotate(35deg);
}
.score-ring span { position: relative; z-index: 1; font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif; font-size: 44px; font-weight: 700; }
.panel ul { margin: 16px 0 0; padding-left: 18px; color: var(--text-muted); }
.table-shell { overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 18px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.07); }
th { color: var(--text-soft); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
tbody tr:hover { background: rgba(125,227,255,0.04); }
.split-highlight { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; align-items: stretch; }
.split-highlight .media-cover img { border-radius: var(--radius-md); }
.metric-row { display: grid; gap: 18px; }
.metric-item { display: grid; gap: 8px; }
.metric-item .label-line { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 700; }
.meter { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.meter > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.timeline-list li { position: relative; padding: 0 0 28px 28px; }
.timeline-list li::before {
  content: ""; position: absolute; left: 5px; top: 6px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 8px rgba(125,227,255,0.08);
}
.timeline-list li::after {
  content: ""; position: absolute; left: 9px; top: 18px; bottom: 0; width: 1px; background: rgba(255,255,255,0.12);
}
.timeline-list li:last-child::after { display: none; }
.timeline-list time { display: inline-block; margin-bottom: 6px; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.newsletter-card { position: relative; overflow: hidden; }
.newsletter-card::before, .newsletter-card::after { content: ""; position: absolute; border-radius: 50%; filter: blur(24px); }
.newsletter-card::before { width: 220px; height: 220px; left: -60px; top: -60px; background: rgba(125,227,255,0.12); }
.newsletter-card::after { width: 260px; height: 260px; right: -90px; bottom: -80px; background: rgba(143,129,255,0.14); }
.newsletter-card > * { position: relative; z-index: 1; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 14px; margin-top: 22px; }
.field {
  width: 100%; min-height: 52px; padding: 0 18px; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  background: rgba(3,8,16,0.5); color: var(--text); outline: none;
}
.field:focus { border-color: var(--line-strong); box-shadow: 0 0 0 4px rgba(125,227,255,0.08); }
.site-footer { margin-top: 52px; padding: 42px 0 56px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(5,13,25,0.6); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 20px; }
.footer-grid h4 { margin: 0 0 14px; color: var(--primary); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: var(--text-muted); font-size: 14px; }
.footer-grid a { display: block; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--text-soft); font-size: 13px; }
.toast {
  position: fixed; right: 20px; bottom: 20px; min-width: 280px; padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(7,16,31,0.92); color: var(--text); box-shadow: var(--shadow); transform: translateY(16px); opacity: 0; pointer-events: none;
  transition: 0.25s ease; z-index: 40;
}
.toast.show { transform: translateY(0); opacity: 1; }
.topic-pill {
  display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06); color: var(--text-muted); font-size: 13px; font-weight: 600;
}
.topic-pill.active { color: #042032; background: var(--primary); }
.author-box { display: grid; grid-template-columns: 88px 1fr; gap: 20px; align-items: center; padding: 28px; }
.author-box img { width: 88px; height: 88px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(125,227,255,0.24); }
.stack { display: grid; gap: 20px; }
.spacer-24 { height: 24px; }
.home-shell {
  padding-bottom: 28px;
}
.breaking-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px;
  border: 1px solid rgba(125, 227, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.88), rgba(7, 14, 24, 0.96));
  box-shadow: 0 14px 30px rgba(3, 8, 16, 0.2);
  overflow: hidden;
}
.breaking-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 252, 157, 0.92), rgba(125, 227, 255, 0.88));
  color: #042032;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.breaking-items {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: auto hidden;
  scrollbar-width: none;
}
.breaking-items::-webkit-scrollbar {
  display: none;
}
.home-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}
.home-hero-main,
.home-trending-panel,
.home-mini-cta,
.home-category-card,
.home-media-highlight,
.home-media-item,
.home-latest-item,
.home-side-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(19, 39, 66, 0.88), rgba(10, 21, 37, 0.94));
  box-shadow: var(--shadow);
}
.home-hero-main {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 24px;
}
.home-hero-main > img,
.home-latest-thumb img,
.home-media-thumb img,
.home-media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-main > img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}
.home-hero-main:hover > img {
  transform: scale(1.04);
}
.home-hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 18, 0.18) 0%, rgba(4, 11, 18, 0.62) 54%, rgba(4, 11, 18, 0.96) 100%),
    linear-gradient(120deg, rgba(24, 200, 255, 0.05), transparent 36%);
}
.home-hero-copy-block {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 34px;
}
.home-hero-copy-block h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.home-hero-copy-block p {
  max-width: 700px;
  margin: 0;
  color: rgba(232, 241, 255, 0.84);
  font-size: 17px;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-side-stack,
.home-sidebar-stack,
.home-media-list,
.home-latest-list {
  display: grid;
  gap: 20px;
}
.home-trending-panel,
.home-mini-cta,
.home-media-highlight,
.home-side-box {
  padding: 26px;
  border-radius: 22px;
}
.home-side-stack {
  grid-template-rows: minmax(0, 1fr) auto;
}
.home-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.home-trending-list {
  display: grid;
  gap: 18px;
}
.home-trending-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-trending-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.home-trending-item strong,
.home-category-card h3,
.home-media-highlight h3,
.home-media-item h4,
.home-latest-item h3,
.home-side-box strong {
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  letter-spacing: -0.03em;
}
.home-trending-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.18;
  transition: color 0.2s ease;
}
.home-trending-item:hover strong,
.home-category-card:hover h3,
.home-media-item:hover h4,
.home-latest-item:hover h3 {
  color: var(--primary);
}
.home-trending-item p,
.home-mini-cta p,
.home-category-card p,
.home-media-highlight p,
.home-media-item p,
.home-latest-item p,
.home-side-box p {
  margin: 0;
  color: var(--text-muted);
}
.home-trending-rank {
  align-self: start;
  color: rgba(0, 252, 157, 0.56);
  font-family: "Space Grotesk", "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9;
}
.home-mini-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(125, 227, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 36, 60, 0.92), rgba(8, 18, 31, 0.96));
}
.home-mini-cta::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(143, 129, 255, 0.12);
  filter: blur(30px);
}
.home-mini-cta > * {
  position: relative;
  z-index: 1;
}
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.home-category-card {
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.home-category-card:hover,
.home-latest-item:hover,
.home-media-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.home-category-card .media-cover {
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
}
.home-category-card .media-cover img,
.home-media-thumb img,
.home-latest-thumb img {
  transition: transform 0.45s ease;
}
.home-category-card:hover .media-cover img,
.home-media-item:hover .home-media-thumb img,
.home-latest-item:hover .home-latest-thumb img {
  transform: scale(1.04);
}
.home-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.home-category-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}
.home-card-copy p {
  font-size: 14px;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
}
.home-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}
.home-media-highlight h3,
.home-latest-item h3 {
  margin: 16px 0 10px;
}
.home-media-highlight h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
}
.home-media-highlight p {
  line-height: 1.7;
}
.home-media-cover {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
}
.home-media-play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(6, 13, 24, 0.72);
  color: var(--primary);
  font-size: 26px;
  backdrop-filter: blur(16px);
}
.home-media-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.home-media-thumb {
  min-height: 126px;
  overflow: hidden;
  border-radius: 16px;
}
.home-media-item h4 {
  margin: 8px 0 4px;
  font-size: 24px;
  line-height: 1.05;
}
.home-latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.62fr);
  gap: 24px;
  align-items: start;
}
.home-latest-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.home-latest-thumb {
  min-height: 164px;
  overflow: hidden;
  border-radius: 18px;
}
.home-latest-item h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
}
.home-latest-item p {
  line-height: 1.72;
}
.home-side-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-side-box li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-side-box li:first-child {
  padding-top: 0;
}
.home-side-box li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.home-side-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1080px) {
  .hero-grid, .home-hero-grid, .page-hero-shell, .content-grid, .split-highlight, .feature-grid, .footer-grid, .article-layout { grid-template-columns: 1fr; }
  .home-bento,
  .home-media-layout,
  .home-latest-layout {
    grid-template-columns: 1fr;
  }
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero-main {
    min-height: 560px;
  }
  .home-side-stack {
    grid-template-rows: auto;
  }
  .article-sidebar { position: static; }
  .quad-grid, .triple-grid, .pros-cons, .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .home-feature-card {
    aspect-ratio: auto;
    min-height: 560px;
  }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); display: none; flex-direction: column;
    gap: 10px; padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(5,13,25,0.96); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-actions .button.ghost { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .section-tight { padding: 34px 0; }
  .hero { padding-top: 48px; }
  .quad-grid, .triple-grid, .two-column, .pros-cons, .fact-grid, .newsletter-form, .page-hero-stats { grid-template-columns: 1fr; }
  .breaking-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }
  .breaking-label {
    min-height: 36px;
    width: fit-content;
  }
  .breaking-items {
    gap: 18px;
    font-size: 12px;
  }
  .home-hero-main {
    min-height: 480px;
    border-radius: 22px;
  }
  .home-hero-copy-block,
  .home-trending-panel,
  .home-mini-cta,
  .home-media-highlight,
  .home-side-box {
    padding: 22px;
  }
  .home-hero-copy-block {
    gap: 14px;
  }
  .home-hero-copy-block h1 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 0.98;
  }
  .home-hero-copy-block p {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
  .home-category-grid {
    grid-template-columns: 1fr;
  }
  .home-category-card .media-cover,
  .home-media-cover {
    min-height: 220px;
  }
  .home-card-copy {
    padding: 20px;
  }
  .home-category-card h3,
  .home-media-item h4,
  .home-side-box strong {
    font-size: 20px;
  }
  .home-media-item,
  .home-latest-item {
    grid-template-columns: 1fr;
  }
  .home-media-thumb,
  .home-latest-thumb {
    min-height: 200px;
  }
  .home-media-play {
    width: 58px;
    height: 58px;
    left: 18px;
    bottom: 18px;
    font-size: 22px;
  }
  .home-latest-item h3 {
    font-size: 26px;
  }
  .home-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions .button.primary { display: none; }
  .hero-visual, .story-card.large .media-cover { min-height: 380px; }
  .hero-copy h1, .page-hero h1, .article-hero h1 { font-size: clamp(34px, 12vw, 52px); }
  .home-hero {
    padding-top: 56px;
  }
  .home-hero-copy h1 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 0.96;
  }
  .home-summary-bar {
    grid-template-columns: 1fr;
  }
  .home-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .home-hero-copy p,
  .home-feature-card .hero-overlay p {
    font-size: 16px;
    line-height: 1.62;
  }
  .home-feature-card .hero-overlay {
    padding: 24px;
  }
  .home-feature-card .hero-overlay h2 {
    font-size: clamp(26px, 8vw, 38px);
    -webkit-line-clamp: 4;
  }
  .home-stat-card {
    padding: 18px;
  }
  .home-stat-card strong {
    font-size: 28px;
  }
  .home-feature-card {
    min-height: 470px;
  }
  .story-card.large {
    min-height: 420px;
  }
  .story-card.large .story-copy {
    padding: 20px;
  }
  .story-card.large .story-copy h3 {
    font-size: clamp(20px, 7vw, 34px);
    -webkit-line-clamp: 5;
  }
  .story-card.large .story-copy p {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
  .lead-note { font-size: 18px; padding: 20px; }
  .article-prose p { font-size: 17px; }
  .author-box { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--primary);
  border: 1px solid transparent;
}

.icon-btn:hover {
  border-color: rgba(125, 227, 255, 0.32);
  background: rgba(125, 227, 255, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}
