* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #E2E8F0;
  background: #0A0F1E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1E2A3A;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #F1F5F9;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: #DC2626;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: #CBD5E1;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #DC2626;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #DC2626;
  color: #FFFFFF;
  border: 1px solid #DC2626;
  box-shadow: 0 2px 8px rgba(220,38,38,0.4);
}

.btn-primary:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  box-shadow: 0 4px 16px rgba(220,38,38,0.5);
}

.btn-outline {
  background: transparent;
  color: #CBD5E1;
  border: 1px solid #334155;
}

.btn-outline:hover {
  border-color: #DC2626;
  color: #DC2626;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #0A0F1E 0%, #0F1A2E 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #DC2626;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #DC2626;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #F8FAFC;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #DC2626;
}

.hero-sub {
  font-size: 17px;
  color: #B0BEC5;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
  /*副文字层次保持 #B0BEC5 */
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid #1E2A3A;
}

.hero-stat {
  padding: 16px 20px;
  border-right: 1px solid #1E2A3A;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #22D3EE;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: #8896A6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-right {}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #1E2A3A;
}

.threat-cell {
  padding: 24px;
  border-right: 1px solid #1E2A3A;
  border-bottom: 1px solid #1E2A3A;
  transition: background 0.2s;
}

.threat-cell:nth-child(even) {
  border-right: none;
}

.threat-cell:nth-child(3),
.threat-cell:nth-child(4) {
  border-bottom: none;
}

.threat-cell:hover {
  background: #0F1827;
}

.threat-cell-icon {
  font-size: 20px;
  color: #22D3EE;
  margin-bottom: 12px;
}

.threat-cell-title {
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.threat-cell-desc {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.6;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, #060A14 0%, #0A1020 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #DC2626;
}

.section-dark .section-label {
  color: #22D3EE;
}

.section-dark .section-label::before {
  background: #22D3EE;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16px;
  color: #B0BEC5;
  line-height: 1.7;
  /* 副文字层次 */
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1E2A3A;
  border: 1px solid #1E2A3A;
}

.cap-item {
  background: #0A0F1E;
  padding: 36px;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.cap-item:hover {
  background: #0F1827;
  box-shadow: 0 4px 24px rgba(220,38,38,0.15);
  border-color: #DC2626;
}

.cap-icon {
  font-size: 24px;
  color: #DC2626;
  margin-bottom: 16px;
}

.cap-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.cap-item p {
  font-size: 14px;
  color: #B0BEC5;
  line-height: 1.7;
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #1E2A3A;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: #164E63;
  border: 2px solid #22D3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #22D3EE;
  flex-shrink: 0;
  z-index: 1;
  font-family: 'Courier New', monospace;
}

.timeline-content {
  background: #060A14;
  border: 1px solid #1E2A3A;
  padding: 24px 28px;
  margin-bottom: 1px;
  flex: 1;
}

.timeline-phase {
  font-size: 11px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.65;
}

.trust-bar {
  background: #060A14;
  border-top: 1px solid #1E2A3A;
  border-bottom: 1px solid #1E2A3A;
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge-icon {
  font-size: 20px;
  color: #DC2626;
}

.cta-section {
  background: #060A14;
  border-top: 1px solid #1E2A3A;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #DC2626;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 16px;
  color: #CBD5E1;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #060A14;
  border-top: 1px solid #1E2A3A;
  padding: 56px 0 28px;
  color: #CBD5E1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #F1F5F9;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: #334155;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #B0BEC5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #334155;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #DC2626;
}

.footer-bottom {
  border-top: 1px solid #0F1827;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: #1E2A3A;
}

.footer-contact-info {
  font-size: 13px;
  color: #334155;
  margin-top: 4px;
}

.page-header {
  padding: 120px 0 60px;
  background: #060A14;
  border-bottom: 1px solid #1E2A3A;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #DC2626;
}

.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 17px;
  color: #CBD5E1;
  max-width: 540px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #1E2A3A;
}

.team-card {
  background: #0A0F1E;
  padding: 32px 24px;
  transition: background 0.2s;
}

.team-card:hover {
  background: #0F1827;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  background: #0F1827;
  filter: grayscale(30%);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 4px;
}

.team-title {
  font-size: 12px;
  color: #DC2626;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.75;
  margin-bottom: 14px;
}

.principles-list {
  list-style: none;
  margin-top: 24px;
}

.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0F1827;
}

.principles-list li:last-child {
  border-bottom: none;
}

.principles-list li .num {
  font-size: 11px;
  font-weight: 800;
  color: #DC2626;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
  width: 24px;
  margin-top: 2px;
}

.principles-list li span {
  font-size: 14px;
  color: #B0BEC5;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 15px;
  color: #CBD5E1;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #B0BEC5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #1E2A3A;
  border-radius: 0;
  font-size: 14px;
  color: #E2E8F0;
  background: #060A14;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #DC2626;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 8px;
}

.contact-info > p {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #DC2626;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #B0BEC5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 14px;
  color: #CBD5E1;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1E2A3A;
}

.insight-card {
  background: #0A0F1E;
  padding: 28px;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}

.insight-card:hover {
  background: #0F1827;
  border-left-color: #22D3EE;
}

.insight-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.insight-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #E2E8F0;
  line-height: 1.4;
  margin-bottom: 10px;
}

.insight-card p {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.insight-meta {
  font-size: 12px;
  color: #8896A6;
  font-family: 'Courier New', monospace;
}

.insight-read-more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #22D3EE;
  margin-top: auto;
  transition: color 0.2s;
}

.insight-card:hover .insight-read-more {
  color: #67E8F9;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: #334155;
  margin-bottom: 48px;
  font-family: 'Courier New', monospace;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #E2E8F0;
  margin: 36px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-content p {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 10px 0 14px 20px;
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.75;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #060A14;
  border-top: 2px solid #DC2626;
  padding: 14px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #DC2626;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 8px 18px;
  background: #DC2626;
  color: #FFFFFF;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cookie-decline {
  padding: 8px 18px;
  background: transparent;
  color: #334155;
  border: 1px solid #1E2A3A;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1E2A3A;
}

.solution-item {
  background: #0A0F1E;
  padding: 32px;
  transition: background 0.2s;
}

.solution-item:hover {
  background: #0F1827;
}

.solution-num {
  font-size: 40px;
  font-weight: 800;
  color: #1E2A3A;
  font-family: 'Courier New', monospace;
  margin-bottom: 16px;
  line-height: 1;
}

.solution-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
}

.breadcrumb a {
  color: #DC2626;
}

.breadcrumb span {
  color: #1E2A3A;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #B0BEC5;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .section-header h2 { font-size: 28px; }
  .insights-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:last-child { border-right: none; }
}

/* === Card Uniformity Fix (auto-generated) === */

.insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-body > a:last-child,
.article-body > p:last-child + a {
  margin-top: auto;
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.article-body > p {
  flex: 1;
}

.article-body > a:last-child,
.article-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.article-body > :last-child {
  margin-top: auto;
}

.insight-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility (theme-aware) */
input::placeholder, textarea::placeholder {
  color: #CBD5E1;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CBD5E1;
  opacity: 1;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* === Article Detail Styles === */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-header {
  padding: 48px 0 32px;
}

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #22D3EE;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.article-meta {
  font-size: 13px;
  color: #8896A6;
  font-family: 'Courier New', monospace;
}

.article-wrap > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 48px;
  border: 1px solid #1E2A3A;
}

.article-body {
  padding: 0;
}

.article-body p {
  font-size: 16px;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 22px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #F8FAFC;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid #1E2A3A;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #E2E8F0;
  margin: 36px 0 12px;
}

.article-body strong {
  color: #F1F5F9;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}

.article-body li {
  font-size: 15px;
  color: #CBD5E1;
  line-height: 1.8;
  padding: 3px 0;
}

.article-body blockquote {
  border-left: 3px solid #22D3EE;
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(34, 211, 238, 0.05);
  color: #B0BEC5;
  font-size: 15px;
  line-height: 1.7;
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
