/* ==========================================
   SSRDOG - Pastel Pink & Blue + Extra Rounded Edges Style
   Style: Dark Pastel Pink & Blue + Ultra-Smooth Rounded Curves
   ========================================== */

:root {
  /* Dark Atmosphere Base */
  --bg-primary: #0b0c16;
  --bg-secondary: #111322;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass: rgba(11, 12, 22, 0.88);

  /* Signature Pastel Pink & Blue Tokens */
  --pastel-pink: #f472b6;
  --pastel-pink-soft: #fbcfe8;
  --pastel-pink-glow: rgba(244, 114, 182, 0.28);

  --pastel-blue: #60a5fa;
  --pastel-blue-soft: #bfdbfe;
  --pastel-sky: #38bdf8;
  --pastel-blue-glow: rgba(96, 165, 250, 0.28);

  --pastel-purple: #c084fc;
  --pastel-mint: #6ee7b7;

  /* Gradients */
  --gradient-pink-blue: linear-gradient(135deg, #f472b6 0%, #c084fc 45%, #60a5fa 100%);
  --gradient-blue-pink: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #f472b6 100%);
  --gradient-glow: radial-gradient(circle at 50% -10%, rgba(244, 114, 182, 0.2) 0%, rgba(96, 165, 250, 0.16) 50%, transparent 75%);

  /* Round Edge Border Tokens */
  --border-color: rgba(255, 255, 255, 0.09);
  --border-pink: rgba(244, 114, 182, 0.35);
  --border-blue: rgba(96, 165, 250, 0.35);
  --border-hover: rgba(244, 114, 182, 0.5);

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Ultra-Smooth Rounded Corner Radius Scale */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.6);
  --shadow-pink-glow: 0 0 35px rgba(244, 114, 182, 0.25);
  --shadow-blue-glow: 0 0 35px rgba(96, 165, 250, 0.25);

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

/* Ambient Pastel Pink & Blue Orbs */
body::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 900px;
  background: var(--gradient-glow);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  top: 450px;
  right: -180px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, rgba(244, 114, 182, 0.08) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Pastel Typography */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: var(--gradient-pink-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pill Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid var(--border-pink);
  color: var(--pastel-pink);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

/* Ultra-Rounded Pill Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-pink-blue);
  color: #0b0c16;
  box-shadow: 0 4px 22px rgba(244, 114, 182, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.55);
  opacity: 0.96;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-pink);
  color: var(--pastel-pink);
  transform: translateY(-3px);
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-pink-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0c16;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 0 18px rgba(244, 114, 182, 0.45);
}

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pastel-pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 5.5rem 0 4.5rem 0;
  position: relative;
}

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

.hero-content h1 {
  font-size: 3.6rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.7;
}

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

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.dot-green {
  width: 9px;
  height: 9px;
  background-color: var(--pastel-pink);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--pastel-pink);
}

/* Dashboard Card - Rounded & Pastel Pink & Blue */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-lg), var(--shadow-pink-glow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

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

.dashboard-title {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pastel-pink);
}

.status-pill {
  font-size: 0.78rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(96, 165, 250, 0.15);
  color: var(--pastel-blue);
  border: 1px solid var(--border-blue);
  font-weight: 600;
}

.nodes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.node-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.node-item:hover {
  border-color: var(--border-pink);
  background: rgba(244, 114, 182, 0.06);
}

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

.flag-icon {
  font-size: 1.15rem;
}

.node-name {
  font-size: 0.88rem;
  font-weight: 600;
}

.node-ping {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pastel-blue);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-color);
}

.stat-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pastel-pink);
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Pulsing Wave Animation */
.network-wave-box {
  height: 64px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wave-svg {
  width: 100%;
  height: 100%;
}

.wave-path {
  fill: none;
  stroke: url(#wave-gradient);
  stroke-width: 3.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: wavePulse 3s linear infinite;
}

@keyframes wavePulse {
  0% { stroke-dashoffset: 400; }
  100% { stroke-dashoffset: 0; }
}

/* Sections Shared */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Bento Grid System with Rounded Corners & Pink/Blue Themes */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.35rem 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bento-card:nth-child(1):hover {
  border-color: var(--border-pink);
  box-shadow: 0 14px 40px rgba(244, 114, 182, 0.2);
}

.bento-card:nth-child(2):hover {
  border-color: var(--border-blue);
  box-shadow: 0 14px 40px rgba(96, 165, 250, 0.2);
}

.bento-card:nth-child(3):hover {
  border-color: var(--border-pink);
  box-shadow: 0 14px 40px rgba(244, 114, 182, 0.2);
}

.bento-card:hover {
  transform: translateY(-6px);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
}

.bento-card:nth-child(1) .card-icon {
  background: rgba(244, 114, 182, 0.14);
  border: 1px solid var(--border-pink);
  color: var(--pastel-pink);
}

.bento-card:nth-child(2) .card-icon {
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid var(--border-blue);
  color: var(--pastel-blue);
}

.bento-card:nth-child(3) .card-icon {
  background: rgba(244, 114, 182, 0.14);
  border: 1px solid var(--border-pink);
  color: var(--pastel-pink);
}

.bento-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Scene Cards */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.85rem;
  margin-top: 2rem;
}

.scene-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.35rem 2rem;
  transition: border-color var(--transition-fast);
}

.scene-card:hover {
  border-color: var(--border-pink);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.tag-item {
  padding: 0.45rem 1.05rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.tag-item:hover {
  border-color: var(--border-blue);
  color: var(--pastel-blue);
}

/* SaaS Pricing Cards - Round Edges & Pastel Pink & Blue */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.65rem 2.1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

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

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(34, 20, 42, 0.95) 0%, rgba(11, 12, 22, 0.95) 100%);
  border-color: var(--pastel-pink);
  box-shadow: 0 0 50px rgba(244, 114, 182, 0.28);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink-blue);
  color: #0b0c16;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(244, 114, 182, 0.35);
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
}

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

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.check-icon {
  color: var(--pastel-pink);
  font-weight: 800;
}

/* SEO Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.article-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.article-category {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(244, 114, 182, 0.14);
  color: var(--pastel-pink);
  border: 1px solid var(--border-pink);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}

.article-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.article-card p {
  font-size: 0.91rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.read-more {
  color: var(--pastel-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.read-more:hover {
  color: var(--pastel-pink);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.85rem;
  transition: border-color var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--border-blue);
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-pink-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0b0c16;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.35);
}

.author-info h4 {
  font-size: 0.96rem;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ Accordion - Ultra Rounded Edges */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1.1rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-pink);
}

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

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--border-pink);
  box-shadow: 0 0 25px rgba(244, 114, 182, 0.15);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--pastel-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 1.75rem 1.35rem 1.75rem;
}

/* Blog Article Layout */
.article-header {
  padding: 4.5rem 0 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.breadcrumb a {
  color: var(--pastel-pink);
}

.article-title-main {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
}

.article-meta-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.article-body-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  padding: 3.5rem 0;
}

.article-content {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.1rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.article-content h3 {
  font-size: 1.35rem;
  margin: 1.85rem 0 0.85rem 0;
  color: var(--text-primary);
}

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

.article-content ul, .article-content ol {
  margin: 1.1rem 0 1.6rem 1.6rem;
}

.article-content li {
  margin-bottom: 0.55rem;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.article-content th, .article-content td {
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--border-color);
  text-align: left;
  font-size: 0.93rem;
}

.article-content th {
  background: rgba(244, 114, 182, 0.08);
  color: var(--pastel-pink);
  font-weight: 600;
}

.article-sidebar {
  position: sticky;
  top: 105px;
  height: fit-content;
}

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.sidebar-box h4 {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 0.85rem;
}

.sidebar-links a {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.sidebar-links a:hover {
  color: var(--pastel-pink);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2.25rem 0;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 1.1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--pastel-pink);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.recommended-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.recommended-links a {
  color: var(--pastel-pink);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.recommended-links a:hover {
  color: var(--pastel-blue);
  text-decoration: underline;
}

/* Responsive Protections */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-body-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.35rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .bento-grid, .scene-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .nodes-list {
    grid-template-columns: 1fr;
  }
}

/* Reduced Motion Protection */
@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;
  }
}
