/* PikaCloud (皮卡云) - Deep Space Cyber Slate Theme */
:root {
  --bg-dark: #060913;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --bg-card-glass: rgba(15, 23, 42, 0.75);
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(6, 182, 212, 0.35);
  --border-purple: rgba(139, 92, 246, 0.35);
  --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.3);
  --glow-purple: 0 0 25px rgba(139, 92, 246, 0.3);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients & Dynamic Light Orbs */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
    linear-gradient(to bottom, #060913 0%, #0b1120 100%);
  pointer-events: none;
  z-index: 0;
}

/* Giant Pikachu Background Watermark Artwork */
.pikachu-bg-watermark {
  position: fixed;
  top: 60px;
  right: -2%;
  width: 720px;
  height: 720px;
  background: url('./pikachu_bg.png') no-repeat center center;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5));
  animation: floatPikachu 8s ease-in-out infinite alternate;
}

@keyframes floatPikachu {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(3deg); }
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.5);
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.1) rotate(6deg);
}

.brand-logo span {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 60%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.55);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

.btn-recommend {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.btn-recommend:hover {
  background: var(--accent-emerald);
  color: #060913;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Asymmetrical Split Hero Section */
.hero-section {
  padding: 160px 0 100px;
  position: relative;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  color: var(--accent-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.hero-title .title-brand {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(6, 182, 212, 0.3));
}

.hero-title .title-sub {
  display: block;
  font-size: 0.72em;
  color: #e2e8f0;
  margin-top: 8px;
  font-weight: 800;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Right Interactive Visual Node Status Widget */
.hero-right-widget {
  background: var(--bg-card-glass);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(16px);
  position: relative;
}

.lightning-accent {
  position: absolute;
  font-size: 1.8rem;
  color: #ffd700;
  filter: drop-shadow(0 0 12px #ffaa00);
  animation: lightningFlash 2s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 10;
}

.lightning-top-right {
  top: -18px;
  right: -14px;
  transform: rotate(15deg);
}

.lightning-bottom-left {
  bottom: -18px;
  left: -14px;
  transform: rotate(-20deg);
}

@keyframes lightningFlash {
  0% { opacity: 0.6; transform: scale(0.95); filter: drop-shadow(0 0 8px #ffd700); }
  50% { opacity: 1; transform: scale(1.2) rotate(12deg); filter: drop-shadow(0 0 20px #ffaa00); }
  100% { opacity: 0.6; transform: scale(0.95); filter: drop-shadow(0 0 8px #ffd700); }
}

.yellow-lightning-icon {
  color: #ffd700;
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 6px;
  filter: drop-shadow(0 0 10px #ffd700);
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.widget-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-status-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.widget-node-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.node-row:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--accent-cyan);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.node-ping {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--accent-emerald);
  font-family: monospace;
}

.widget-client-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.client-tag {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Features Section (Asymmetrical Left Border Titles) */
.features-section {
  padding: 90px 0;
}

.section-header-left {
  text-align: left;
  margin-bottom: 48px;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 18px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.section-title .glow-cyan {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid var(--border-cyan);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.6) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border: 2px solid var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: linear-gradient(180deg, #152035 0%, #0f172a 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  min-height: 40px;
}

.pricing-price {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.pricing-price .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pricing-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-cyan);
  font-weight: bold;
}

/* Articles Section */
.articles-section {
  padding: 90px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), var(--glow-purple);
}

.article-tag {
  display: inline-block;
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card h3 a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card h3 a:hover {
  color: var(--accent-cyan);
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.article-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-link:hover {
  text-decoration: underline;
}

/* Reviews Section */
.reviews-section {
  padding: 90px 0;
  background: rgba(15, 23, 42, 0.4);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}

.review-rating {
  color: var(--accent-amber);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-content {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.review-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.review-info span {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
}

.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--border-cyan);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(6, 9, 19, 0.4);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 26px 22px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Article Template Custom Page Styles */
.article-page {
  padding: 130px 0 80px;
}

.article-header {
  margin-bottom: 40px;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.article-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 16px 0;
  color: #ffffff;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.article-body {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.85;
  font-size: 1.05rem;
  color: #cbd5e1;
}

.article-body h2 {
  font-size: 1.65rem;
  color: #ffffff;
  margin: 36px 0 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.article-body h3 {
  font-size: 1.3rem;
  color: var(--accent-cyan);
  margin: 28px 0 12px;
}

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

.article-body ul, .article-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 4px solid var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.article-cta-box h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.article-cta-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Site Footer & PBN Links Pipe */
.site-footer {
  background: #03050a;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

/* Core Task 2: PBN Friendlinks Pipe Styling */
.pbn-links-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 10px;
}

.pbn-links-area span {
  opacity: 0.6;
}

.pbn-links-area a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pbn-links-area a:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .article-body {
    padding: 24px;
  }
}
