/* ==========================================================================
   skylumo Network Accelerator - Light Pastel Purple Theme (Soft Lavender & Lilac)
   ========================================================================== */

:root {
  /* Light Pastel Purple Palette */
  --bg-dark: #f6f3ff;
  
  /* Soft Pastel Glass Word Boxes (Cards & Containers) */
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-gradient: linear-gradient(155deg, #ffffff 0%, #faf5ff 100%);
  --bg-card-hover: linear-gradient(155deg, #ffffff 0%, #f3e8ff 100%);
  
  --pastel-lavender: #c084fc;
  --pastel-lilac: #d8b4fe;
  --pastel-purple: #a855f7;
  --pastel-pink: #f472b6;
  --pastel-bg: #f5f3ff;
  
  /* Soft Glowing Box Borders & Drop Shadows */
  --border-color: rgba(192, 132, 252, 0.35);
  --border-highlight: #a855f7;
  --box-shadow-pop: 0 10px 30px rgba(168, 85, 247, 0.12);
  
  --primary: #a855f7;
  --primary-hover: #9333ea;
  --accent-cyan: #0284c7;
  --accent-purple: #9333ea;
  --accent-emerald: #059669;
  
  /* High-Contrast Readability Typography (Deep Violet on Light Pastel) */
  --text-main: #2e1065;
  --text-muted: #4c1d95;
  --text-dim: #6b21a8;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  
  /* Smooth & Rounded Borders */
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --radius-pill: 9999px;
  
  --shadow-glow: 0 12px 35px rgba(168, 85, 247, 0.2);
  --container-width: 1240px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  /* Soft Light Pastel Purple Mesh Background */
  background: 
    radial-gradient(circle at 10% 15%, rgba(192, 132, 252, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 88% 25%, rgba(244, 114, 182, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 75%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #f7f4ff 0%, #f3ebff 40%, #eee3ff 100%);
  background-attachment: fixed;
}

/* Background Layered Waves Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(ellipse at 50% -20%, rgba(192, 132, 252, 0.25), transparent 70%),
    radial-gradient(ellipse at 90% 60%, rgba(244, 114, 182, 0.18), transparent 60%);
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2e1065;
  border-radius: var(--radius-pill);
}

.brand-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #a855f7, #f472b6);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

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

.nav-link {
  font-size: 0.95rem;
  color: #4c1d95;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: #2e1065;
  background: rgba(192, 132, 252, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Rounded Pill Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);
  filter: brightness(1.06);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(192, 132, 252, 0.15);
  color: #4c1d95;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(192, 132, 252, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
  color: #2e1065;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: #2e1065;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 24px;
  z-index: 999;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  color: #4c1d95;
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

.mobile-nav-link:hover {
  color: #2e1065;
  background: rgba(192, 132, 252, 0.2);
}

/* ==========================================================================
   Hero Section with Soft Waves
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(192, 132, 252, 0.12)' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,181.3C672,181,768,203,864,213.3C960,224,1056,224,1152,208C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x bottom;
  background-size: 1440px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(192, 132, 252, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #581c87;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #2e1065;
}

.hero-title span {
  background: linear-gradient(135deg, #7e22ce, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4c1d95;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.68;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.stat-item .stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2e1065;
}

.stat-item .stat-label {
  font-size: 0.84rem;
  color: #6b21a8;
}

/* Light Pastel Dashboard Box */
.dashboard-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--box-shadow-pop);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

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

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #047857;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}

.nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.node-chip {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.node-chip:hover {
  background: #ffffff;
  border-color: var(--border-highlight);
}

.node-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2e1065;
}

.ping-badge {
  font-size: 0.78rem;
  color: #047857;
  background: rgba(16, 185, 129, 0.18);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.network-graph-svg {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Bento Grid Section (Light Pastel Word Boxes)
   ========================================================================== */

.section-padding {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(192, 132, 252, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: var(--radius-pill);
  color: #581c87;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: #2e1065;
}

.section-desc {
  font-size: 1.02rem;
  color: #4c1d95;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Light Pastel Bento Word Boxes */
.bento-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-pop);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.bento-card.span-2 {
  grid-column: span 2;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(244, 114, 182, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e22ce;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.15);
}

.card-title {
  font-size: 1.32rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #2e1065;
}

.card-text {
  font-size: 0.98rem;
  color: #4c1d95;
  line-height: 1.7;
}

/* ==========================================================================
   Global Nodes & AI/Streaming Section
   ========================================================================== */

.nodes-feature-box {
  background: linear-gradient(155deg, #ffffff 0%, #f5e9ff 100%);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-top: 40px;
  box-shadow: var(--shadow-glow);
}

.ai-streaming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.scenario-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--box-shadow-pop);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-item {
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: #581c87;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   SaaS Pricing Grid Section
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-pop);
}

.pricing-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background: linear-gradient(170deg, #ffffff 0%, #f3e8ff 100%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.4);
}

.plan-name {
  font-size: 1.38rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #2e1065;
}

.plan-desc {
  font-size: 0.9rem;
  color: #6b21a8;
  margin-bottom: 24px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2e1065;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b21a8;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 0.95rem;
  color: #4c1d95;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li svg {
  color: #059669;
  flex-shrink: 0;
}

/* ==========================================================================
   SEO Articles Grid Section
   ========================================================================== */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-pop);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.article-category {
  font-size: 0.78rem;
  font-weight: 800;
  color: #7e22ce;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 12px;
  color: #2e1065;
}

.article-excerpt {
  font-size: 0.9rem;
  color: #4c1d95;
  line-height: 1.68;
  margin-bottom: 22px;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b21a8;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Testimonials & FAQ Accordion Section
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--box-shadow-pop);
}

.testimonial-text {
  font-size: 0.96rem;
  color: #4c1d95;
  line-height: 1.68;
  margin-bottom: 22px;
  font-style: italic;
}

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

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #a855f7, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3);
}

.user-info .user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2e1065;
}

.user-info .user-role {
  font-size: 0.8rem;
  color: #6b21a8;
}

/* FAQ Accordions */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--box-shadow-pop);
}

.faq-item.active {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #2e1065;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #7e22ce;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: #4c1d95;
  font-size: 0.96rem;
  line-height: 1.68;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 28px 24px 28px;
}

/* ==========================================================================
   Footer Component (Grounded Soft Lavender Dark Base)
   ========================================================================== */

.site-footer {
  background: #1e0836;
  border-top: 1px solid rgba(192, 132, 252, 0.3);
  padding: 70px 0 34px 0;
  margin-top: 90px;
  position: relative;
  color: #f3e8ff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand .brand-logo {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #d8b4fe;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.65;
}

.footer-column h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #e9d5ff;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(192, 132, 252, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.recommended-sites {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.88rem;
  color: #d8b4fe;
}

.recommended-sites a {
  color: #ffffff;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(192, 132, 252, 0.2);
  transition: all 0.2s ease;
}

.recommended-sites a:hover {
  color: #ffffff;
  background: rgba(192, 132, 252, 0.4);
}

.copyright {
  font-size: 0.84rem;
  color: #d8b4fe;
}

/* ==========================================================================
   Article Single Page Styles
   ========================================================================== */

.article-container {
  max-width: 860px;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #6b21a8;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #4c1d95;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.breadcrumb a:hover {
  color: #2e1065;
  background: rgba(192, 132, 252, 0.2);
}

.article-header-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #2e1065;
}

.article-body-content {
  font-size: 1.08rem;
  line-height: 1.88;
  color: #4c1d95;
}

.article-body-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #2e1065;
  margin: 44px 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.article-body-content h3 {
  font-size: 1.28rem;
  font-weight: 700;
  color: #7e22ce;
  margin: 30px 0 14px 0;
}

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

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

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

.article-body-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  font-size: 0.94rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card-gradient);
  box-shadow: var(--box-shadow-pop);
}

.article-body-content th, .article-body-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.article-body-content th {
  background: rgba(192, 132, 252, 0.2);
  color: #2e1065;
  font-weight: 800;
}

.article-cta-box {
  background: linear-gradient(150deg, rgba(168, 85, 247, 0.15), rgba(244, 114, 182, 0.15));
  border: 1.5px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 42px;
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-glow);
}

.article-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2e1065;
}

.article-cta-box p {
  font-size: 1rem;
  color: #4c1d95;
  margin-bottom: 24px;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #2e1065;
}

.related-posts ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-posts a {
  color: #4c1d95;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.related-posts a:hover {
  color: #2e1065;
  background: rgba(192, 132, 252, 0.2);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.span-2 {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions .btn-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .bento-grid, .pricing-grid, .articles-grid, .testimonials-grid, .ai-streaming-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
