/* ==========================================================================
   SSRDOG Proxy & Accelerator Landing Page Stylesheet
   Theme: Light Pink Aesthetic + Floating Butterfly Wallpaper + Soft Glassmorphism
   ========================================================================== */

:root {
  --bg-dark: #fff0f5;
  --bg-paper: #fff5f8;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.96);
  --bg-card-solid: #ffffff;
  --border-color: rgba(244, 114, 182, 0.22);
  --border-glow: rgba(236, 72, 153, 0.45);
  
  --text-main: #2e1022;
  --text-muted: #6b3d56;
  --text-dim: #94657e;
  
  --accent-cyan: #ec4899;
  --accent-pink: #f472b6;
  --accent-rose: #fb7185;
  --accent-purple: #c084fc;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
  --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-glow: radial-gradient(circle at 50% -20%, rgba(244, 114, 182, 0.25), transparent 70%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Light Pink Wallpaper with Butterfly Print Pattern */
body {
  line-height: 1.6;
  background-color: #fff0f5;
  background-image: 
    /* Soft glowing radial lights */
    radial-gradient(circle at 15% 15%, rgba(251, 113, 133, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(192, 132, 252, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(244, 114, 182, 0.15) 0%, transparent 50%),
    /* SVG Butterfly Print Seamless Wallpaper Pattern */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23f472b6' fill-opacity='0.15'%3E%3C!-- Butterfly 1 --%3E%3Cpath d='M40 30 C30 15 15 22 30 35 C12 40 20 52 35 40 C37 48 42 48 41 40 C55 52 64 40 48 35 C64 22 49 15 39 30 Z'/%3E%3Ccircle cx='39.5' cy='35' r='1.5' fill='%23ec4899' fill-opacity='0.25'/%3E%3C!-- Butterfly 2 (Small) --%3E%3Cpath d='M120 110 C112 98 100 104 112 114 C98 118 104 128 116 118 C117 124 121 124 120 118 C132 128 138 118 126 114 C138 104 126 98 119 110 Z' transform='rotate(15 120 110)'/%3E%3C!-- Decorative Sparkles --%3E%3Ccircle cx='80' cy='40' r='2' fill='%23fb7185' fill-opacity='0.2'/%3E%3Ccircle cx='30' cy='120' r='2.5' fill='%23c084fc' fill-opacity='0.2'/%3E%3Ccircle cx='140' cy='30' r='1.8' fill='%23ec4899' fill-opacity='0.2'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #db2777;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #db2777;
  background: rgba(251, 113, 133, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.35);
  padding: 0.35rem 0.95rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #831843 0%, #be185d 50%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.text-center {
  text-align: center;
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 99px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #831843;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(244, 114, 182, 0.15);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(236, 72, 153, 0.4);
  color: #be185d;
  transform: translateY(-2px);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 240, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.08);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 900;
  color: #831843;
  letter-spacing: -0.03em;
}

.brand-logo svg {
  width: 34px;
  height: 34px;
}

.brand-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link:hover {
  color: #be185d;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: #831843;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 114, 182, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.35);
  padding: 0.4rem 0.95rem;
  border-radius: 99px;
  font-size: 0.85rem;
  color: #be185d;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ec4899;
  border-radius: 50%;
  box-shadow: 0 0 10px #ec4899;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #4c0519;
}

.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
}

/* Hero Network Dashboard (Right Visual) */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(244, 114, 182, 0.15);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

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

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #831843;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  font-weight: 700;
}

.nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.node-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.node-item:hover {
  background: #ffffff;
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.15);
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.node-flag {
  font-size: 1.1rem;
}

.node-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4c0519;
}

.node-ping {
  font-size: 0.78rem;
  font-weight: 800;
  color: #059669;
  font-family: monospace;
}

.network-graph {
  height: 120px;
  background: rgba(255, 245, 248, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.graph-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

.graph-svg {
  width: 100%;
  height: 60px;
}

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

.tag-active {
  color: #be185d;
  font-weight: 700;
}

/* Bento Grid Core Features */
.features-section {
  padding: 80px 0;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.08);
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.18);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(244, 114, 182, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #4c0519;
}

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

/* AI & Streaming Section */
.scene-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 240, 245, 0.6) 50%, transparent 100%);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.scene-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.08);
}

.scene-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.scene-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: rgba(192, 132, 252, 0.2);
  color: #9333ea;
}

.chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 114, 182, 0.25);
  border-radius: 99px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4c0519;
  box-shadow: 0 2px 8px rgba(244, 114, 182, 0.08);
}

.chip-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(244, 114, 182, 0.08);
}

.pricing-card:hover {
  border-color: rgba(236, 72, 153, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15);
}

.pricing-card.featured {
  background: #ffffff;
  border: 2px solid #ec4899;
  box-shadow: 0 0 35px rgba(236, 72, 153, 0.25);
}

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1.1rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #4c0519;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #be185d;
}

.price-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: #831843;
}

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

.plan-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

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

/* SEO Articles Grid (Homepage) */
.articles-section {
  padding: 80px 0;
}

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

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(244, 114, 182, 0.08);
}

.article-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(236, 72, 153, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.15);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}

.article-cat {
  color: #be185d;
  font-weight: 700;
  background: rgba(244, 114, 182, 0.15);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #4c0519;
}

.article-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #be185d;
}

.article-link:hover {
  gap: 0.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: rgba(255, 240, 245, 0.5);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 8px 25px rgba(244, 114, 182, 0.08);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #4c0519;
}

.user-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.06);
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #4c0519;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: #ec4899;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
}

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

/* Footer Section */
.footer {
  background: #fff0f5;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #4c0519;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.external-recommendations {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.external-link {
  color: #831843;
  font-weight: 600;
  transition: var(--transition);
}

.external-link:hover {
  color: #ec4899;
  text-decoration: underline;
}

/* Article Page Layout Styles */
.article-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-dim);
}

.article-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.article-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #4c0519;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4c1d33;
  max-width: 900px;
}

.article-body h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #831843;
  margin: 2.5rem 0 1rem 0;
  border-left: 4px solid #ec4899;
  padding-left: 0.75rem;
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #be185d;
  margin: 1.75rem 0 0.75rem 0;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.92rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.08);
}

.article-body th, .article-body td {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  text-align: left;
}

.article-body th {
  background: rgba(244, 114, 182, 0.15);
  color: #831843;
  font-weight: 800;
}

.callout-box {
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.related-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4c0519;
  margin-bottom: 1.5rem;
}

/* Animations & Keyframes */
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 15px #ec4899; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@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;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff0f5;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .bento-grid, .scene-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bento-card-large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .nodes-grid {
    grid-template-columns: 1fr;
  }
}
