/* Reset and base styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
}

/* Winamp-style visualizer background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Subtle particle/dot matrix effects */
.particle-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff0420;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s infinite ease-in-out;
}

.connection-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 4, 32, 0.3) 50%, transparent 100%);
  opacity: 0;
  animation: connection-pulse 6s infinite ease-in-out;
}

.matrix-dot {
  position: absolute;
  width: 1px;
  height: 1px;
  background: #ff0420;
  opacity: 0;
  animation: matrix-twinkle 4s infinite ease-in-out;
}

.grid-line {
  position: absolute;
  background: #ff0420;
  opacity: 0.12;
  box-shadow: 0 0 3px rgba(255, 4, 32, 0.25);
}

.grid-line.horizontal {
  height: 1px;
  width: 100%;
  animation: grid-pulse 10s infinite ease-in-out;
}

.grid-line.vertical {
  width: 1px;
  height: 100%;
  animation: grid-pulse 12s infinite ease-in-out;
}

@keyframes ember-float-1 {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  10% { opacity: 0.8; transform: translateY(-60px) translateX(-5px) scale(1); }
  30% { opacity: 0.7; transform: translateY(-180px) translateX(8px) scale(0.9); }
  60% { opacity: 0.5; transform: translateY(-350px) translateX(-3px) scale(0.7); }
  90% { opacity: 0.2; transform: translateY(-520px) translateX(12px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-600px) translateX(6px) scale(0.3); }
}

@keyframes ember-float-2 {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  15% { opacity: 0.9; transform: translateY(-70px) translateX(7px) scale(1); }
  35% { opacity: 0.8; transform: translateY(-200px) translateX(-6px) scale(0.9); }
  65% { opacity: 0.4; transform: translateY(-380px) translateX(15px) scale(0.7); }
  85% { opacity: 0.2; transform: translateY(-500px) translateX(-4px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-600px) translateX(10px) scale(0.3); }
}

@keyframes ember-float-3 {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  8% { opacity: 0.7; transform: translateY(-45px) translateX(-7px) scale(1); }
  40% { opacity: 0.9; transform: translateY(-220px) translateX(5px) scale(0.8); }
  70% { opacity: 0.5; transform: translateY(-400px) translateX(-10px) scale(0.6); }
  95% { opacity: 0.1; transform: translateY(-580px) translateX(3px) scale(0.4); }
  100% { opacity: 0; transform: translateY(-600px) translateX(-1px) scale(0.3); }
}

@keyframes ember-diagonal-1 {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  15% { opacity: 0.8; transform: translateY(-100px) translateX(60px) scale(1); }
  50% { opacity: 0.6; transform: translateY(-300px) translateX(150px) scale(0.8); }
  85% { opacity: 0.3; transform: translateY(-500px) translateX(220px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-600px) translateX(250px) scale(0.3); }
}

@keyframes ember-diagonal-2 {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  20% { opacity: 0.9; transform: translateY(-80px) translateX(-40px) scale(1); }
  60% { opacity: 0.7; transform: translateY(-320px) translateX(-120px) scale(0.7); }
  90% { opacity: 0.2; transform: translateY(-520px) translateX(-180px) scale(0.4); }
  100% { opacity: 0; transform: translateY(-600px) translateX(-200px) scale(0.3); }
}

@keyframes connection-pulse {
  0%, 100% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 0.4;
    transform: scaleX(1);
  }
}

@keyframes matrix-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(2);
  }
}

@keyframes grid-pulse {
  0%, 100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.18;
  }
}

/* Scroll-triggered animations */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .geometric-shape {
    animation: none;
  }
  
  .parallax-element {
    transform: none !important;
  }
}

/* Typography - v0 inspired */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

h1 { 
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 { 
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
h3 { 
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}
h4 { 
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.lead {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #d4d4d4;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Navigation - v0 dark style */
.nav {
  position: fixed;
  top: 44px;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #262626;
  z-index: 1000;
  transition: all 0.2s ease;
}

/* Nav positioning when no banner */
body:not(:has(.latest-post-banner)) .nav {
  top: 0;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.1);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-pipe {
  color: #ff0420;
  text-shadow: 0 0 12px rgba(255, 4, 32, 0.8), 0 0 24px rgba(255, 4, 32, 0.4);
  filter: drop-shadow(0 0 8px rgba(255, 4, 32, 0.6));
}

@keyframes knight-rider-vertical {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 100%;
  }
}

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

.nav-links a {
  color: #a3a3a3;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.nav-links .btn-primary {
  color: white;
}

.nav-links a:not(.btn-primary):hover {
  color: #ffffff;
}

.nav-links a:not(.btn-primary):focus {
  outline: none;
  color: #ffffff;
}

.nav-updates {
  color: #a3a3a3 !important;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-updates:hover {
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons - v0 style */
.btn-primary {
  background: #ff0420;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: #e6041c;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  background: #cc041a;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: 1px solid #525252;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.btn-secondary:hover {
  background: #262626;
  border-color: #737373;
  color: #ffffff;
}

.btn-secondary:active {
  background: #e5e5e5;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border-radius: 5px;
}

/* Latest Post Banner */
.latest-post-banner {
  background: linear-gradient(135deg, #1a0204 0%, #000000 100%);
  color: #ffffff;
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  font-size: 0.875rem;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner-text {
  font-weight: 500;
}

.banner-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.15s ease;
}

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

.banner-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.banner-close:hover {
  opacity: 1;
}

/* Main content */
.main-content {
  margin-top: 80px;
  position: relative;
  z-index: 5;
}

/* Adjust main content margin when banner is present */
body:has(.latest-post-banner) .main-content {
  margin-top: 124px;
}

/* Hero section - v0 dark style */
.hero {
  padding: 6rem 0 4rem 0;
  background: transparent;
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid #262626;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-profile {
  margin-bottom: 2rem;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 3px solid #ff0420;
  box-shadow: 0 0 15px rgba(255, 4, 32, 0.4), 0 0 30px rgba(255, 4, 32, 0.2);
  transition: all 0.4s ease;
}

.profile-image:hover {
  box-shadow: 0 0 25px rgba(255, 4, 32, 0.6), 0 0 50px rgba(255, 4, 32, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.gradient-text {
  color: #ff0420;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  color: #d4d4d4;
  line-height: 1.6;
  font-weight: 400;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid #262626;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #a3a3a3;
  font-weight: 500;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #000000;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Simple content - conversational style */
.simple-content {
  background: transparent;
  padding: 4rem 0;
  position: relative;
  z-index: 5;
}

.content-block {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 1rem;
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.7;
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.simple-list li {
  color: #d4d4d4;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.simple-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff0420;
  font-weight: bold;
}

.email-link {
  color: #ff0420;
  text-decoration: none;
  font-weight: 500;
}

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

.disclaimer-text {
  font-size: 0.875rem;
  color: #737373;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #262626;
}

/* CTA Section - v0 minimal */
.cta-section {
  background: #000000;
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #ffffff;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #ff0420;
}

.cta-section .btn-secondary {
  background: transparent;
  border-color: #404040;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: #262626;
  border-color: #525252;
}

/* Footer - v0 dark style */
.footer {
  background: #000000;
  border-top: 1px solid #262626;
  padding: 3rem 0 2rem 0;
  position: relative;
  z-index: 5;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand p {
  color: #a3a3a3;
  font-size: 0.9375rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-section a {
  display: block;
  color: #a3a3a3;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #a3a3a3;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.disclaimer {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.75rem !important;
  color: #a3a3a3;
  line-height: 1.2;
}

.wbnns-link {
  color: #ff0420;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
}

.wbnns-link:hover {
  color: #e6041c;
  text-decoration: underline;
}

.hero .wbnns-link {
  color: #ff0420;
}

.footer .wbnns-link {
  color: #ff0420;
}

/* Utilities */
.text-center {
  text-align: center;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #475569;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.nav-links.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-links.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .hero-stats {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav .container {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 6rem 0 4rem 0;
  }
  
  .profile-image {
    width: 100px;
    height: 100px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }
  
  .stat {
    padding: 1.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero {
    padding: 5rem 0 3rem 0;
  }
  
  .service-card {
    padding: 1.75rem;
    border-radius: 20px;
  }
  
  .why-card {
    padding: 2rem 1.25rem;
  }
  
  .stat {
    padding: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  /* Optional: Add dark mode styles if needed */
}

/* Updates Blog Styles */
.updates-list {
  margin-top: 2rem;
}

.update-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #262626;
}

.update-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.update-header {
  margin-bottom: 1rem;
}

.update-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

.update-title:hover {
  color: #ff0420;
}

.update-date {
  font-size: 0.875rem;
  color: #737373;
  font-weight: 400;
}

.update-excerpt {
  margin: 1rem 0;
  color: #d4d4d4;
  line-height: 1.6;
}

.update-excerpt p {
  margin-bottom: 1rem;
}

.read-more {
  color: #ff0420;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.read-more:hover {
  color: #e6041c;
  text-decoration: underline;
}

.no-posts {
  text-align: center;
  padding: 3rem 0;
}

.no-posts p {
  color: #a3a3a3;
  font-size: 1rem;
}

/* Blog Post Styles */
.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #262626;
}

.post-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.post-meta {
  color: #737373;
  font-size: 0.875rem;
}

.post-content {
  line-height: 1.7;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: #d4d4d4;
}

.post-content a {
  color: #ff0420;
  text-decoration: none;
}

.post-content a:hover {
  color: #e6041c;
  text-decoration: underline;
}

.post-content blockquote {
  border-left: 3px solid #ff0420;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #a3a3a3;
}

.post-content code {
  background: #262626;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-size: 0.875em;
  color: #ffffff;
}

.post-content pre {
  background: #262626;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #262626;
  text-align: center;
}

.back-to-updates {
  color: #a3a3a3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.back-to-updates:hover {
  color: #ffffff;
}

/* Print Styles */
@media print {
  .nav,
  .footer,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    color: black;
  }
}