:root {
  --nt-primary: #0b1120;
  --nt-secondary: #2563eb;
  --nt-accent: #10b981;
  --nt-surface: #f1f5f9;
  --nt-ink: #0f172a;
  
  --nt-bg: #f8fafc;
  --nt-card-bg: #ffffff;
  --nt-border: #e2e8f0;
  --nt-muted: #64748b;
  --nt-font-display: 'Syne', sans-serif;
  --nt-font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body.nt-body {
  background-color: var(--nt-bg);
  color: var(--nt-ink);
  font-family: var(--nt-font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.nt-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nt-header {
  background-color: var(--nt-primary);
  color: #ffffff;
  border-bottom: 3px solid var(--nt-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nt-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nt-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nt-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--nt-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nt-brand-icon {
  color: var(--nt-accent);
  display: flex;
  align-items: center;
}

.nt-meta-pill {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nt-accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nt-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nt-menu-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nt-menu-link:hover,
.nt-menu-link.is-active {
  color: #ffffff;
  border-bottom: 2px solid var(--nt-accent);
}

.nt-main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.nt-hero-section {
  background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px -5px rgba(11, 17, 32, 0.2);
  position: relative;
  overflow: hidden;
}

.nt-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.nt-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.nt-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--nt-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--nt-accent);
}

.nt-category-tag {
  color: var(--nt-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nt-hero-heading {
  font-family: var(--nt-font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.nt-hero-subheading {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.nt-hero-intro {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--nt-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

.nt-hero-positioning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #93c5fd;
}

.nt-pillars-section {
  margin-bottom: 3.5rem;
}

.nt-section-heading-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.nt-section-title {
  font-family: var(--nt-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--nt-primary);
  white-space: nowrap;
}

.nt-section-line {
  flex: 1;
  height: 2px;
  background: var(--nt-border);
}

.nt-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.nt-pillar-card {
  background: var(--nt-card-bg);
  border: 1px solid var(--nt-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nt-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
  border-color: var(--nt-secondary);
}

.nt-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.nt-pillar-bullet {
  color: var(--nt-accent);
}

.nt-pillar-name {
  font-family: var(--nt-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nt-primary);
}

.nt-pillar-desc {
  color: var(--nt-muted);
  font-size: 0.95rem;
}

.nt-stream-section {
  margin-bottom: 3.5rem;
}

.nt-stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.nt-stream-card {
  background: var(--nt-card-bg);
  border: 1px solid var(--nt-border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.nt-stream-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--nt-muted);
  margin-bottom: 0.75rem;
}

.nt-stream-sec {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nt-secondary);
}

.nt-stream-title {
  font-family: var(--nt-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.nt-stream-title a {
  color: var(--nt-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nt-stream-title a:hover {
  color: var(--nt-secondary);
}

.nt-stream-excerpt {
  color: var(--nt-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.nt-stream-link {
  color: var(--nt-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nt-stream-link:hover {
  color: var(--nt-primary);
}

.nt-audience-banner {
  background-color: var(--nt-surface);
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
}

.nt-audience-title {
  font-family: var(--nt-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nt-primary);
  margin-bottom: 0.5rem;
}

.nt-audience-body {
  color: var(--nt-muted);
  font-size: 0.95rem;
}

.nt-article-view {
  max-width: 1000px;
  margin: 0 auto;
}

.nt-article-header {
  margin-bottom: 2.5rem;
}

.nt-article-breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--nt-muted);
  margin-bottom: 1rem;
}

.nt-article-breadcrumbs a {
  color: var(--nt-secondary);
  text-decoration: none;
  font-weight: 600;
}

.nt-article-title {
  font-family: var(--nt-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--nt-primary);
  margin-bottom: 1rem;
}

.nt-article-standfirst {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.nt-article-pub-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--nt-muted);
  border-top: 1px solid var(--nt-border);
  border-bottom: 1px solid var(--nt-border);
  padding: 0.75rem 0;
}

.nt-article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
}

@media (max-width: 850px) {
  .nt-article-layout {
    grid-template-columns: 1fr;
  }
}

.nt-article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1e293b;
}

.nt-article-content p {
  margin-bottom: 1.5rem;
}

.nt-article-content h2, 
.nt-article-content h3 {
  font-family: var(--nt-font-display);
  color: var(--nt-primary);
  margin: 2rem 0 1rem;
}

.nt-article-content blockquote {
  border-left: 4px solid var(--nt-accent);
  background: var(--nt-surface);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.nt-article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nt-sidebar-card {
  background: var(--nt-card-bg);
  border: 1px solid var(--nt-border);
  border-radius: 10px;
  padding: 1.25rem;
}

.nt-sidebar-title {
  font-family: var(--nt-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--nt-primary);
}

.nt-sidebar-desc {
  font-size: 0.88rem;
  color: var(--nt-muted);
}

.nt-list-header {
  margin-bottom: 2.5rem;
  background: var(--nt-primary);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
}

.nt-list-title {
  font-family: var(--nt-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.nt-list-lead {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.nt-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.nt-list-item {
  background: var(--nt-card-bg);
  border: 1px solid var(--nt-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.nt-item-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--nt-muted);
  margin-bottom: 0.5rem;
}

.nt-item-section {
  color: var(--nt-secondary);
  font-weight: 700;
}

.nt-item-title {
  font-family: var(--nt-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.nt-item-title a {
  color: var(--nt-ink);
  text-decoration: none;
}

.nt-item-title a:hover {
  color: var(--nt-secondary);
}

.nt-item-desc {
  color: var(--nt-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.nt-item-link {
  color: var(--nt-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.nt-footer {
  background-color: var(--nt-primary);
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}

.nt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .nt-footer-inner {
    grid-template-columns: 1fr;
  }
}

.nt-footer-brand {
  font-family: var(--nt-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.nt-footer-positioning {
  font-size: 0.9rem;
  color: #cbd5e1;
  max-width: 500px;
}

.nt-footer-audience {
  font-size: 0.85rem;
}

.nt-footer-label {
  display: block;
  color: var(--nt-accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.nt-footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #64748b;
}
