/* ============================================
   FONT IMPORTS
   ============================================ */
   @import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&f[]=clash-grotesk@600,700&f[]=array@400&display=swap');

   /* ============================================
      CSS VARIABLES
      ============================================ */
   :root {
       /* Colors */
       --forest-authority: #064E3B;
       --soft-warm-white: #E8EDE7;
       --milky-warm-white: #F9FAF8;
       --deep-forest: #052E16;
       --sage-authority: #84A98C;
        --deep-crimson: #7C1D33;
       --deep-moss: #2F3E46;
       --soft-deep-forest: rgba(6, 78, 59, 0.3);
       --deep-black: #121212;
       
       /* Typography */
       --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       --font-heading: 'Clash Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       --font-brand: 'Array', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
       
       /* Spacing */
       --spacing-xs: 0.5rem;
       --spacing-sm: 1rem;
       --spacing-md: 1.5rem;
       --spacing-lg: 2rem;
       --spacing-xl: 3rem;
       --spacing-2xl: 4rem;
       
       /* Border Radius */
       --radius-sm: 0.5rem;
       --radius-md: 0.75rem;
       --radius-lg: 1rem;
       --radius-xl: 1.5rem;
       
       /* Shadows */
       --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
       --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
       --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
       --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
       
       /* Transitions */
       --transition-fast: 150ms ease;
       --transition-base: 200ms ease;
       --transition-slow: 300ms ease;
   }
   
   /* ============================================
      DARK MODE
      ============================================ */
   [data-theme="dark"] {
       --bg-primary: var(--deep-black);
       --bg-secondary: var(--forest-authority);
       /* --text-primary: white; */
       --text-primary: var(--soft-warm-white);
    --text-secondary: white;
    --bg-tertiary: var(--soft-deep-forest);
    --icon-color: var(--soft-warm-white);
    --icon-bg: rgba(132, 169, 140, 0.1);

       /* --text-secondary: var(--sage-authority); */
       --border-color: rgba(132, 169, 140, 0.2);
   }
   
   [data-theme="light"] {
       --bg-primary: var(--milky-warm-white);
       --bg-primary-light: var(--soft-warm-white);
       --bg-secondary: rgba(6, 78, 59, 0.05);
       --text-primary: var(--deep-forest);
       --text-secondary: var(--deep-moss);
       --border-color: rgba(6, 78, 59, 0.2);
       --bg-tertiary: linear-gradient(135deg, var(--forest-authority), var(--deep-crimson));
       --icon-color: var(--deep-crimson);
       --icon-bg: var(--soft-warm-white);
   }
   /* fallback */
/* @font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../icons/material-icon.woff2') format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
} */


   /* ============================================
      RESET & BASE STYLES
      ============================================ */
   *, *::before, *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }
   
   html {
       scroll-behavior: smooth;
   }
   
   body {
       font-family: var(--font-body);
       background-color: var(--bg-primary);
       color: var(--text-primary);
       line-height: 1.6;
       -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
       transition: background-color var(--transition-slow), color var(--transition-slow);
   }
   
   h1, h2, h3, h4, h5, h6 {
       font-family: var(--font-heading);
       line-height: 1.2;
       font-weight: 700;
   }
   
   a {
       text-decoration: none;
       color: inherit;
   }
   
   img {
       max-width: 100%;
       display: block;
   }
   
   /* ============================================
      UTILITY CLASSES
      ============================================ */
   .container {
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 1.5rem;
   }
   
   .brand-font {
       font-family: var(--font-brand);
   }
   
   .gradient-text {
       background: linear-gradient(135deg, var(--forest-authority), var(--deep-crimson));
       -webkit-background-clip: text;
       background-clip: text;
       -webkit-text-fill-color: transparent;
   }
   
   [data-theme="dark"] .gradient-text {
       background: linear-gradient(135deg, var(--sage-authority), var(--deep-crimson));
       -webkit-background-clip: text;
       background-clip: text;
   }
   
   /* ============================================
      ANIMATIONS
      ============================================ */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   @keyframes pulse {
       0%, 100% {
           opacity: 1;
       }
       50% {
           opacity: 0.5;
       }
   }
   
   @keyframes float {
       0%, 100% {
           transform: translateY(0px);
       }
       50% {
           transform: translateY(-20px);
       }
   }
   
   .reveal-on-scroll {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.6s ease, transform 0.6s ease;
   }
   
   .reveal-on-scroll.revealed {
       opacity: 1;
       transform: translateY(0);
   }
   
   .clip-reveal {
       clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
       transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1);
   }
   
   .clip-reveal.revealed {
       clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }
   
   .delay-100 { transition-delay: 100ms; }
   .delay-150 { transition-delay: 150ms; }
   .delay-200 { transition-delay: 200ms; }
   .delay-300 { transition-delay: 300ms; }
   
   /* ============================================
      NAVIGATION
      ============================================ */
   .navbar {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 1000;
       transition: all var(--transition-base);
       
   }
   
   .navbar.scrolled {
       background: rgba(232, 237, 231, 0.95);
       backdrop-filter: blur(16px);
       box-shadow: var(--shadow-lg);
       border-bottom: 1px solid var(--border-color);
   }
   
   [data-theme="dark"] .navbar.scrolled {
       background: rgba(5, 46, 22, 0.95);
   }
   
   .nav-container {
       max-width: 1280px;
       margin: 0 auto;
       padding: 1rem 1.5rem;
       display: flex;
       align-items: center;
       justify-content: space-between;
   }
   
   .logo {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       font-size: 1.5rem;
       font-weight: 700;
       transition: transform var(--transition-fast);
   }
   
   .logo:hover {
       transform: scale(1.05);
   }
   
   .logo-icon {
       color: var(--deep-crimson);
   }
   .logo-header {
    width: 100%;
    height: auto;
   }

   
   .nav-links {
       display: flex;
       align-items: center;
       gap: 0.25rem;
   }
   
   .nav-link {
       padding: 0.5rem 1rem;
       border-radius: var(--radius-md);
       font-size: 0.875rem;
       font-weight: 500;
       transition: all var(--transition-fast);
   }
   
   .nav-link:hover {
       background: rgba(6, 78, 59, 0.1);
   }
   
   [data-theme="dark"] .nav-link:hover {    
       background: rgba(6, 78, 59, 0.5);
   }
   
   .nav-link.active {
       background: var(--forest-authority);
       color: var(--soft-warm-white);
   }
   
   [data-theme="dark"] .nav-link.active {
       background: var(--sage-authority);
       color: var(--deep-forest);
   }
   
   .nav-actions {
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }
   
   .icon-btn {
       width: 40px;
       height: 40px;
       display: flex;
       align-items: center;
       justify-content: center;
       border: none;
       background: transparent;
       color: var(--text-primary);
       border-radius: var(--radius-md);
       cursor: pointer;
       transition: all var(--transition-fast);
   }
   
   .icon-btn:hover {
       background: rgba(6, 78, 59, 0.1);
   }
   
   [data-theme="dark"] .icon-btn:hover {
       background: rgba(6, 78, 59, 0.5);
   }
   
   .mobile-menu-toggle {
       display: none;
       flex-direction: column;
       gap: 4px;
       background: transparent;
       border: none;
       cursor: pointer;
       padding: 0.5rem;
   }
   
   .mobile-menu-toggle span {
       width: 24px;
       height: 2px;
       background: var(--text-primary);
       transition: all var(--transition-fast);
   }
   
   .mobile-nav {
       display: none;
       flex-direction: column;
       gap: 0.5rem;
       padding: 1rem 1.5rem;
       border-top: 1px solid var(--border-color);
   }
   
   .mobile-nav.active {
       display: flex;
   }
   
   /* ============================================
      COMMAND PALETTE
      ============================================ */
   .command-palette {
       position: fixed;
       inset: 0;
       z-index: 2000;
       background: rgba(5, 46, 22, 0.8);
       backdrop-filter: blur(8px);
       display: none;
       align-items: flex-start;
       justify-content: center;
       padding-top: 8rem;
       padding: 8rem 1rem 1rem;
   }
   
   .command-palette.active {
       display: flex;
   }
   
   .command-content {
       width: 100%;
       max-width: 42rem;
       background: var(--bg-primary);
       border: 1px solid var(--border-color);
       border-radius: var(--radius-xl);
       box-shadow: var(--shadow-xl);
       overflow: hidden;
   }
   
   .command-input {
       width: 100%;
       padding: 1.5rem;
       border: none;
       background: transparent;
       font-size: 1.125rem;
       color: var(--text-primary);
       border-bottom: 1px solid var(--border-color);
       outline: none;
   }
   
   .command-input::placeholder {
       color: var(--text-secondary);
       opacity: 0.5;
   }
   
   .command-results {
       max-height: 24rem;
       overflow-y: auto;
       padding: 0.5rem;
   }
   
   .command-item {
       padding: 1rem 1.5rem;
       border-radius: var(--radius-md);
       cursor: pointer;
       transition: all var(--transition-fast);
       margin-bottom: 0.25rem;
   }
   
   .command-item:hover {
       background: rgba(6, 78, 59, 0.1);
   }
   
   [data-theme="dark"] .command-item:hover {
       background: rgba(6, 78, 59, 0.5);
   }
   
   .command-item-title {
       font-weight: 600;
       margin-bottom: 0.25rem;
   }
   
   .command-item-description {
       font-size: 0.875rem;
       color: var(--text-secondary);
       opacity: 0.7;
   }
   
   /* ============================================
      BUTTONS
      ============================================ */
   .btn {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.75rem 1.5rem;
       border-radius: var(--radius-md);
       font-weight: 600;
       font-size: 0.875rem;
       transition: all var(--transition-fast);
       cursor: pointer;
       border: none;
   }
   
   .btn-primary {
       background: var(--deep-crimson);
       color: white;
   }
   
   .btn-primary:hover {
       background: #9a2440;
       transform: translateY(-2px);
       box-shadow: var(--shadow-lg);
   }
   
   .btn-outline {
       background: transparent;
       border: 2px solid var(--forest-authority);
       color: var(--forest-authority);
   }
   
   [data-theme="dark"] .btn-outline {
       border-color: var(--sage-authority);
       color: var(--sage-authority);
   }
   
   .btn-outline:hover {
       background: var(--forest-authority);
       color: white;
       transform: translateY(-2px);
   }
   
   [data-theme="dark"] .btn-outline:hover {
       background: var(--sage-authority);
       color: var(--deep-forest);
   }
   
   .btn-white {
       background: white;
       color: var(--forest-authority);
   }
   
   .btn-white:hover {
       background: var(--soft-warm-white);
       transform: translateY(-2px);
       box-shadow: var(--shadow-lg);
   }
   
   .btn-outline-white {
       background: transparent;
       border: 2px solid white;
       color: white;
   }
   
   .btn-outline-white:hover {
       background: rgba(255, 255, 255, 0.1);
   }
   
   /* ============================================
      CARDS
      ============================================ */
   .card {
       background: rgba(255, 255, 255, 0.5);
       backdrop-filter: blur(8px);
       border: 1px solid var(--border-color);
       border-radius: var(--radius-xl);
       padding: 2rem;
       box-shadow: var(--shadow-md);
   }
   
   [data-theme="dark"] .card {
       background: rgba(6, 78, 59, 0.3);
   }
   
   .card-title {
       font-size: 1.5rem;
       margin-bottom: 1.5rem;
   }
   
   /* ============================================
      BADGES
      ============================================ */
   .badge {
       display: inline-flex;
       align-items: center;
       padding: 0.375rem 0.75rem;
       border-radius: 9999px;
       font-size: 0.75rem;
       font-weight: 600;
       background: rgba(6, 78, 59, 0.1);
       color: var(--forest-authority);
   }
   
   [data-theme="dark"] .badge {
       background: rgba(132, 169, 140, 0.2);
       color: var(--sage-authority);
   }
   
   .badge-success {
       background: rgba(34, 197, 94, 0.1);
       color: rgb(22, 163, 74);
   }
   
   /* ============================================
      HERO SECTION
      ============================================ */
   .hero-section {
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 8rem 0 4rem;
       position: relative;
       overflow: hidden;
   }
   
   .bg-animation {
       position: absolute;
       inset: 0;
       overflow: hidden;
       opacity: 0.1;
   }
   
   [data-theme="dark"] .bg-animation {
       opacity: 0.2;
   }
   
   .blob {
       position: absolute;
       border-radius: 50%;
       filter: blur(60px);
       animation: float 6s ease-in-out infinite;
   }
   
   .blob-1 {
       top: 5rem;
       left: 2.5rem;
       width: 18rem;
       height: 18rem;
       background: var(--forest-authority);
       animation-delay: 0s;
   }
   
   .blob-2 {
       bottom: 5rem;
       right: 2.5rem;
       width: 24rem;
       height: 24rem;
       background: var(--deep-crimson);
       animation-delay: 1.5s;
   }
   
   .hero-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 3rem;
       align-items: center;
   }
   
   @media (min-width: 1024px) {
       .hero-grid {
           grid-template-columns: 1fr 1fr;
       }
   }
   
   .status-badge {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.5rem 1rem;
       background: var(--deep-crimson);
       color: white;
       border-radius: 9999px;
       font-size: 0.875rem;
       font-weight: 600;
       margin-bottom: 1.5rem;
   }
   
   .status-indicator {
       position: relative;
       width: 8px;
       height: 8px;
       background: white;
       border-radius: 50%;
   }
   
   .status-indicator::before {
       content: '';
       position: absolute;
       inset: 0;
       background: white;
       border-radius: 50%;
       animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
   }
   
   .hero-title {
       font-size: clamp(2.5rem, 5vw, 4.5rem);
       margin-bottom: 1.5rem;
       line-height: 1.1;
   }
   
   /* Typing animation with Array font */
   .typing-text {
       display: inline-block;
       font-family: 'Array', monospace;
       font-weight: 400;
       min-width: 200px; /* Fixed width to prevent layout shift */
       text-align: left;
   }
   
   .hero-description {
       font-size: 1.25rem;
       color: var(--text-secondary);
       margin-bottom: 2rem;
       line-height: 1.6;
   }
   
   .hero-buttons {
       display: flex;
       flex-wrap: wrap;
       gap: 1rem;
       margin-bottom: 2rem;
   }
   
   .social-links {
       display: flex;
       align-items: center;
       gap: 1.5rem;
   }
   
   .social-links a {
       color: var(--text-secondary);
       transition: all var(--transition-fast);
   }
   
   .social-links a:hover {
       color: var(--deep-crimson);
       transform: translateY(-2px);
   }
   
   /* ============================================
      STATUS DASHBOARD
      ============================================ */
   .status-dashboard {
       position: relative;
       z-index: 10;
   }
   
   .status-item {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       padding: 1rem;
       border-radius: var(--radius-md);
       background: var(--bg-primary-light);
       margin-bottom: 1rem;
   }
   
   [data-theme="dark"] .status-item {
       background: rgba(5, 46, 22, 0.5);
   }
   
   .status-item-icon {
       width: 40px;
       height: 40px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--icon-color);
   }

   .status-item-icon .ph {
       font-size: 20px;
       width: 20px;
       height: 20px;
   }
   
 
   
   .status-item-content {
       flex: 1;
   }
   
   .status-item-label {
       font-size: 0.875rem;
       color: var(--text-secondary);
   }
   
   .status-item-value {
       font-weight: 600;
       font-size: 1rem;
   }
   
   .status-item-full {
       padding: 1rem;
       border-radius: var(--radius-md);
       background: var(--bg-primary-light);
   }
   
   [data-theme="dark"] .status-item-full {
       background: rgba(5, 46, 22, 0.5);
   }
   
   .status-item-value-large {
       font-size: 1.5rem;
       font-weight: 700;
       margin: 0.5rem 0;
   }
   
   .status-item-subtitle {
       font-size: 0.75rem;
       color: var(--text-secondary);
   }
   
   /* ============================================
      STATS SECTION
      ============================================ */
   .stats-section {
       padding: 5rem 0;
       background: var(--forest-authority);
   }
   
   [data-theme="dark"] .stats-section {
       background: rgba(6, 78, 59, 0.5);
   }
   
   .stats-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 2rem;
       position: relative;
       /* max-width: 700px; */
       margin: 0 auto;
   }
   
   @media (min-width: 768px) {
       .stats-grid {
           grid-template-columns: repeat(4, 1fr);
       }
   }
   
   .stats-center-gradient.stats-horizontal {
       position: absolute;
       top: 50%;
       left: 0;
       right: 0;
       transform: translateY(-50%);
       height: 5px;
       background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
       opacity: 0.5;
       z-index: 0;
   }
   
   .stats-center-gradient.stats-vertical {
       position: absolute;
       top: 0;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 5px;
       background: linear-gradient(180deg, transparent 0%, white 50%, transparent 100%);
       opacity: 0.5;
       z-index: 0;
   }
   
   @media (min-width: 768px) {
       .stats-center-gradient {
           display: none;
       }
   }
   
   .stat-item {
       text-align: center;
       position: relative;
       z-index: 1;
   }
   
   .stat-value {
       font-size: clamp(2.5rem, 4vw, 3rem);
       font-weight: 700;
       color: var(--soft-warm-white);
       margin-bottom: 0.5rem;
   }
   
   .stat-label {
       color: var(--soft-warm-white);
       font-size: 0.875rem;
   }
   
   /* ============================================
      FEATURES SECTION
      ============================================ */
   .features-section {
       padding: 5rem 0;
   }

   /* ============================================
      SHAPED WRITE-UP SECTIONS
      ============================================ */
   .shape-section {
       padding: 5rem 0;
   }
   .shape-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2rem;
       align-items: center;
       position: relative;
       padding: 2rem;
       border-radius: var(--radius-xl);
   }
   
   .shape-grid::before {
       content: '';
       position: absolute;
       inset: 0;
       background: var(--sage-authority);
       border-radius:var(--radius-xl);
       z-index: 0;
   }
   
   @media (min-width: 1024px) {
       .shape-grid {
           grid-template-columns: 1.2fr 0.8fr;
           gap: 3rem;
           padding: 4rem;
       }
       
       .shape-grid::before {
           border-radius: 1rem; 
           left: -1rem;
           right: 1rem;
           top: 1.5rem;
           bottom: 1.5rem;
           clip-path: polygon(
               /* Left bracket < - more organized, narrower */
               0% 0%, 14% 0%, 14% 30%, 24% 50%, 14% 70%, 14% 100%, 0% 100%,
               /* Top edge - shorter, organized */
               14% 0%, 46% 0%,
               /* Right edge - wraps around image, more organized */
               46% 0%, 48% 0%, 48% 30%, 62% 50%, 48% 70%, 48% 100%, 46% 100%,
               /* Bottom edge - shorter, organized */
               46% 100%, 14% 100%
           );
       }
       
   
   }
   
   [data-theme="dark"] .shape-grid::before,
   [data-theme="dark"] .shape-grid::after {
       background: color-mix(in srgb, var(--sage-authority) 85%, black 15%);
   }
   
   .shape-panel {
       position: relative;
       color: var(--text-primary);
       background: transparent;
       z-index: 1;
   }
   
   .shape-panel h3 {
       font-size: clamp(1.75rem, 3vw, 2.5rem);
       line-height: 1.2;
       margin-bottom: 0.75rem;
       color: black;
   }
   
   .shape-panel p {
       font-size: 1.125rem;
       line-height: 1.8;
   }
   
   .shape-image {
       position: relative;
       aspect-ratio: 4 / 3;
       border-radius: var(--radius-xl);
       overflow: hidden;
       background: var(--bg-secondary);
       box-shadow: var(--shadow-lg);
       z-index: 1;
       order: -1;
       max-width: 90%; 
       margin: 0 auto 1.5rem;
   }
   
   @media (min-width: 1024px) {
       /* Desktop: Restore normal order and bigger size for image */
       .shape-image {
           order: 0;
           max-width: 100%;
           margin: 0;
           left: 4rem;
           aspect-ratio: 16 / 10; /* Bigger image - wider aspect ratio */
       }
       .shape-panel {
        padding: 3rem;
       }
       /* Make the image column bigger */
       .shape-grid {
           grid-template-columns: 1fr 1.2fr; /* Image gets more space */
       }
   }
   
   .shape-image img { 
       width: 100%; 
       height: 100%; 
       object-fit: cover; 
   }

   .timeless-container {
       position: relative;
       width: 100%;
       height: 100%;
   }
/* tablet positioning */
   .clock-overlay {
       position: absolute;
       bottom: 33%;
       left: 25%;
       transform-origin: 50% 50%;
       z-index: 10;
       transform: scale(1.5);

   }

   /* Mobile-specific positioning using rem */
   @media (max-width: 768px) {
       .clock-overlay {
           bottom: 17%;
           left: 2.0rem;
           transform: scale(0.7);
           transform-origin: 50% 50%;
       }
   }



   /* Desktop positioning */
   @media (min-width: 1024px) {
       .clock-overlay {
           bottom: 29%;
           left: 25.8%;
           transform: scale(1.3);

       }
   }

   .idea-section { padding: 5rem 0; }
   .idea-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2.5rem;
       align-items: center;
   }
   @media (min-width: 1024px) {
       .idea-grid { grid-template-columns: 1fr 1fr; }
       .idea-grid.reverse { direction: rtl; }
       .idea-grid.reverse > * { direction: ltr; }
   }
   .idea-block {
       padding: 2.5rem;
       border: 1px solid var(--border-color);
       border-radius: var(--radius-xl);
       background: rgba(255, 255, 255, 0.5);
       backdrop-filter: blur(8px);
       box-shadow: var(--shadow-md);
   }
   [data-theme="dark"] .idea-block { background: var(--soft-deep-forest); }
   .idea-block h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
   .idea-block p { color: var(--text-secondary); line-height: 1.75; }
   .idea-visual {
       aspect-ratio: 16 / 10;
       border-radius: var(--radius-xl);
       overflow: hidden;
       position: relative;
       background: linear-gradient(135deg, rgba(6, 78, 59, 0.15), rgba(124, 29, 51, 0.15));
       box-shadow: var(--shadow-lg);
   }
   .idea-visual::after {
       /* subtle geometric pattern */
       content: '';
       position: absolute;
       inset: 0;
       background-image: radial-gradient(currentColor 1px, transparent 1px);
       background-size: 14px 14px;
       opacity: 0.15;
       color: var(--deep-crimson);
   }
   
   .section-header {
       text-align: center;
       margin-bottom: 4rem;
   }
   
   .section-title {
       font-size: clamp(2rem, 4vw, 3rem);
       margin-bottom: 1rem;
   }
   
   .section-description {
       font-size: 1.25rem;
       color: var(--text-secondary);
   }
   
   .features-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   @media (min-width: 768px) {
       .features-grid {
           grid-template-columns: repeat(3, 1fr);
       }
   }
   
   .feature-card {
       padding: 2rem;
       background: rgba(255, 255, 255, 0.5);
       backdrop-filter: blur(8px);
       border: 1px solid var(--border-color);
       border-radius: var(--radius-xl);
       transition: all var(--transition-slow);
       display: block;
   }
   
   [data-theme="dark"] .feature-card {
       background: rgba(6, 78, 59, 0.3);
   }
   
   .feature-card:hover {
       transform: translateY(-8px);
       box-shadow: var(--shadow-xl);
   }
   
   .feature-icon .ph {
       font-size: 32px;
       width: 32px;
       height: 32px;
   }

   .feature-icon {
    background: var(--icon-bg);
    color: var(--icon-color);
       width: 4rem;
       height: 4rem;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: var(--radius-xl);
       margin-bottom: 1.5rem;
       transition: transform var(--transition-slow);
   }
   
   .feature-card:hover .feature-icon {
       transform: scale(1.1);
   }
   
   .feature-title {
       font-size: 1.5rem;
       margin-bottom: 0.75rem;
   }
   
   .feature-description {
       color: var(--text-secondary);
       line-height: 1.6;
       margin-bottom: 1.5rem;
   }
   
   .feature-link {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       color: var(--deep-crimson);
       font-weight: 600;
   }
   
   .feature-card:hover .feature-link svg {
       transform: translateX(4px);
   }
   
   .feature-link svg {
       transition: transform var(--transition-fast);
   }
   
   /* View More Toggle */
   .view-more-toggle {
       text-align: center;
       margin-top: 3rem;
   }
   
   .view-more-toggle button {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
   }
   
   .view-more-toggle svg {
       transition: transform var(--transition-slow);
   }
   
   .view-more-toggle button[aria-expanded="true"] svg {
       transform: rotate(180deg);
   }
   
   .features-grid-additional {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2rem;
       margin-top: 2rem;
       animation: fadeInUp 0.5s ease;
   }
   
   @media (min-width: 768px) {
       .features-grid-additional {
           grid-template-columns: repeat(3, 1fr);
       }
   }
   
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(20px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* ============================================
      CTA SECTION
      ============================================ */
   .cta-section {
       padding: 2rem 1.5rem;
       border-radius: var(--radius-xl);
       max-width: 90%;
       margin: 0 auto;
       overflow: hidden;
       background: var(--bg-tertiary);
   }
   
   .cta-content {
       text-align: center;
       max-width: 100%;
   }
   
   .cta-title {
       font-size: clamp(1.75rem, 4vw, 3rem);
       color: white;
       margin-bottom: 1rem;
       line-height: 1.2;
   }
   
   .cta-description {
       font-size: clamp(1rem, 2vw, 1.25rem);
       color: var(--soft-warm-white);
       margin-bottom: 1.5rem;
       line-height: 1.6;
   }
   
   .cta-buttons {
       display: flex;
       flex-direction: column;
       gap: 0.75rem;
       justify-content: center;
       align-items: stretch;
   }
   
   .cta-buttons .btn {
       width: 100%;
       justify-content: center;
   }
   
   @media (min-width: 768px) {
       .cta-section {
           padding: 3rem 2rem;
           max-width: 80%;
       }
       
       .cta-content {
           max-width: 56rem;
           margin: 0 auto;
       }
       
       .cta-title {
           margin-bottom: 1.5rem;
       }
       
       .cta-description {
           margin-bottom: 2rem;
       }
       
       .cta-buttons {
           flex-direction: row;
           flex-wrap: wrap;
           gap: 1rem;
       }
       
       .cta-buttons .btn {
           width: auto;
           flex: 0 1 auto;
       }
   }
   
   /* ============================================
      FOOTER
      ============================================ */
   .footer {
    margin-top: 5rem;
       padding: 3rem 0;
       border-top: 1px solid var(--border-color);
       background: var(--bg-secondary);
   }
   
   [data-theme="dark"] .footer {
       background: rgba(6, 78, 59, 0.3);
   }
   
   .footer-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 2rem;
       margin-bottom: 2rem;
   }
   
   @media (min-width: 768px) {
       .footer-grid {
           grid-template-columns: repeat(3, 1fr);
       }
   }
   
   .footer-logo {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       font-size: 1.25rem;
       font-weight: 700;
       margin-bottom: 1rem;
   }
   
   .footer-logo .ph {
       color: var(--deep-crimson);
       font-size: 20px;
       width: 20px;
       height: 20px;
   }
   
   .footer-description,
   .footer-text {
       color: var(--text-secondary);
       font-size: 0.875rem;
   }
   
   .footer-title {
       font-weight: 600;
       margin-bottom: 1rem;
   }
   
   .footer-links {
       display: flex;
       flex-direction: column;
       gap: 0.5rem;
   }
   
   .footer-links a {
       color: var(--text-secondary);
       font-size: 0.875rem;
       transition: color var(--transition-fast);
   }
   
   .footer-links a:hover {
       color: var(--forest-authority);
   }
   
   [data-theme="dark"] .footer-links a:hover {
       color: var(--sage-authority);
   }
   
   .footer-bottom {
       text-align: center;
       padding-top: 2rem;
       border-top: 1px solid var(--border-color);
       color: var(--text-secondary);
       font-size: 0.875rem;
   }
   
   kbd {
       padding: 0.125rem 0.5rem;
       border-radius: 0.25rem;
       background: rgba(6, 78, 59, 0.2);
       font-size: 0.75rem;
       font-family: monospace;
   }
   
   /* ============================================
      RESPONSIVE DESIGN
      ============================================ */
   @media (max-width: 768px) {
       .desktop-nav {
           display: none;
       }
       
       .mobile-menu-toggle {
           display: flex;
       }
       .consultation-btn {
        display: none;
       }
 
       
       .hero-section {
           padding-top: 6rem;
           margin-top: 2rem;
       }
       
       .hero-title {
           font-size: 2.5rem;
       }
       
       .hero-buttons {
           flex-direction: column;
       }
       
       .btn {
           width: 100%;
           justify-content: center;
       }
       .navbar{
        background: rgba(232, 237, 231, 0.95);
       }
       [data-theme="dark"] .navbar{
        background: var(--bg-primary);
       }
   }
   
   @media (prefers-reduced-motion: reduce) {
       *,
       *::before,
       *::after {
           animation-duration: 0.01ms !important;
           animation-iteration-count: 1 !important;
           transition-duration: 0.01ms !important;
       }
   }

   

/* ============================================
   TECH JOURNAL STYLES
   ============================================ */


   .page-content {
    padding: 8rem 1.5rem 4rem;
    min-height: 100vh;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 48rem;
}

/* Search and Filter Controls */
.journal-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-bar {
    flex: 1;
    position: relative;
    min-width: 250px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

[data-theme="dark"] .search-input {
    background: rgba(6, 78, 59, 0.3);
}

.search-input:focus {
    outline: none;
    border-color: var(--deep-crimson);
    box-shadow: 0 0 0 3px rgba(124, 29, 51, 0.1);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tags Filter */
.tags-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 4rem;
}

.tag-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 9999px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .tag-btn {
    background: rgba(6, 78, 59, 0.3);
}

.tag-btn:hover {
    background: rgba(6, 78, 59, 0.1);
    transform: translateY(-2px);
}

[data-theme="dark"] .tag-btn:hover {
    background: rgba(6, 78, 59, 0.5);
}

.tag-btn.active {
    background: var(--deep-crimson);
    color: white;
}

/* Sections */
.featured-section,
.all-articles-section {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Featured Articles Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* All Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Article Card */
.article-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    cursor: pointer;
}

[data-theme="dark"] .article-card {
    background: rgba(6, 78, 59, 0.3);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.article-tag {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--forest-authority);
}

[data-theme="dark"] .article-tag {
    color: var(--sage-authority);
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.article-card:hover .article-title {
    color: var(--deep-crimson);
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-date {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Small Article Card */
.article-card.small {
    padding: 1.5rem;
}

.article-card.small .article-title {
    font-size: 1.25rem;
}

.article-card.small .article-excerpt {
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card.small .article-meta {
    font-size: 0.75rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 1rem;
}

.no-results svg {
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.no-results p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ============================================
   CODE GARDEN STYLES
   ============================================ */

   .contribution-section {
    margin-bottom: 4rem;
}

.card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contribution Graph */
.contribution-graph {
    overflow-x: auto;
    padding: 1rem 0;
}

.contribution-grid {
    display: inline-flex;
    gap: 4px;
}

.contribution-week {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contribution-day {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.contribution-day:hover {
    ring: 2px solid var(--deep-crimson);
    transform: scale(1.2);
}

.contribution-day[data-level="0"] {
    background: var(--bg-primary);
}

[data-theme="dark"] .contribution-day[data-level="0"] {
    background: var(--deep-forest);
}

.contribution-day[data-level="1"] {
    background: rgba(132, 169, 140, 0.3);
}

.contribution-day[data-level="2"] {
    background: rgba(132, 169, 140, 0.6);
}

.contribution-day[data-level="3"] {
    background: rgba(6, 78, 59, 0.8);
}

.contribution-day[data-level="4"] {
    background: var(--forest-authority);
}

.contribution-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.legend-squares {
    display: flex;
    gap: 4px;
}

.legend-square {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Skills Section */
.skills-section {
    margin-bottom: 4rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.skill-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    cursor: pointer;
}

[data-theme="dark"] .skill-card {
    background: rgba(6, 78, 59, 0.3);
}

.skill-card:hover {
    box-shadow: var(--shadow-xl);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skill-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.skill-category {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.skill-percentage {
    font-size: 2rem;
    font-weight: 700;
    transition: transform var(--transition-slow);
}

.skill-card:hover .skill-percentage {
    transform: scale(1.2);
}

.skill-bar-container {
    height: 12px;
    background: var(--bg-primary);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .skill-bar-container {
    background: var(--deep-forest);
}

.skill-bar {
    height: 100%;
    border-radius: 9999px;
    transition: width 1s cubic-bezier(0.65, 0, 0.35, 1);
    width: 0;
}

.skill-card:hover .skill-bar {
    box-shadow: 0 0 20px currentColor;
}

.skill-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Tech Stack Section */
.tech-stack-section {
    margin-bottom: 4rem;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-stack-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

[data-theme="dark"] .tech-stack-card {
    background: rgba(6, 78, 59, 0.3);
}

.tech-stack-card:hover {
    box-shadow: var(--shadow-xl);
}

.tech-stack-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: var(--forest-authority);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
}

[data-theme="dark"] .tech-badge {
    background: var(--sage-authority);
    color: var(--deep-forest);
}

.tech-badge:hover {
    background: var(--deep-crimson);
    color: white;
    transform: translateY(-2px);
}

/* Garden Stats */
.garden-stats-section {
    margin-top: 4rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

[data-theme="dark"] .stat-card {
    background: rgba(6, 78, 59, 0.3);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-crimson);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   ENGINEERING LAB STYLES
   ============================================ */

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
}

[data-theme="dark"] .project-card {
    background: rgba(6, 78, 59, 0.3);
}

.project-card:hover {
    box-shadow: var(--shadow-xl);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Project Image */
.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .project-image {
        height: 100%;
        min-height: 400px;
    }
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.8), transparent);
}

/* Project Content */
.project-content {
    padding: 2rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    padding: 0.375rem 0.75rem;
    background: var(--forest-authority);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

[data-theme="dark"] .project-tag {
    background: var(--sage-authority);
    color: var(--deep-forest);
}

.project-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Project Metrics */
.project-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
}

[data-theme="dark"] .metric-item {
    background: rgba(5, 46, 22, 0.5);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-crimson);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* View Details Button */
.project-actions {
    display: flex;
    gap: 1rem;
}

.btn-view-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--forest-authority);
    border-radius: var(--radius-md);
    color: var(--forest-authority);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .btn-view-details {
    border-color: var(--sage-authority);
    color: var(--sage-authority);
}

.btn-view-details:hover {
    background: var(--forest-authority);
    color: white;
}

[data-theme="dark"] .btn-view-details:hover {
    background: var(--sage-authority);
    color: var(--deep-forest);
}

.btn-view-details svg {
    transition: transform var(--transition-fast);
}

.btn-view-details.active svg {
    transform: rotate(180deg);
}

/* Expandable Details */
.project-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.project-details.expanded {
    max-height: 1000px;
}

.project-details-content {
    padding: 2rem;
    padding-top: 0;
}

.detail-section {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

[data-theme="dark"] .detail-section {
    background: rgba(5, 46, 22, 0.5);
}

.detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-icon.challenge {
    background: rgba(124, 29, 51, 0.1);
    color: var(--deep-crimson);
}

.detail-icon.solution {
    background: rgba(6, 78, 59, 0.1);
    color: var(--forest-authority);
}

.detail-icon.impact {
    background: rgba(132, 169, 140, 0.1);
    color: var(--sage-authority);
}

.detail-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   LIVE SANDBOX STYLES
   ============================================ */

/* Tabs */
.sandbox-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

[data-theme="dark"] .sandbox-tabs {
    background: rgba(6, 78, 59, 0.3);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(6, 78, 59, 0.1);
}

[data-theme="dark"] .tab-btn:hover {
    background: rgba(6, 78, 59, 0.5);
}

.tab-btn.active {
    background: var(--deep-crimson);
    color: white;
}

/* Playground Container */
.playground-container {
    margin-bottom: 4rem;
}

.playground-header {
    margin-bottom: 2rem;
}

.playground-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.playground-description {
    color: var(--text-secondary);
}

/* Code Editor */
.code-editor-wrapper {
    margin-bottom: 1.5rem;
}

.editor-header,
.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--deep-forest);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

[data-theme="dark"] .editor-header,
[data-theme="dark"] .output-header {
    background: var(--forest-authority);
}

.editor-label,
.output-label {
    color: var(--soft-warm-white);
    font-size: 0.875rem;
    font-weight: 600;
}

.editor-actions {
    display: flex;
    gap: 0.5rem;
}

.editor-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--deep-crimson);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.editor-btn:hover {
    background: #9a2440;
    transform: translateY(-1px);
}

.editor-btn:nth-child(2) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.editor-btn:nth-child(2):hover {
    background: rgba(255, 255, 255, 0.1);
}

.code-editor {
    width: 100%;
    min-height: 300px;
    padding: 1.5rem;
    background: var(--deep-forest);
    color: var(--soft-warm-white);
    border: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    resize: vertical;
    outline: none;
}

[data-theme="dark"] .code-editor {
    background: rgba(5, 46, 22, 0.8);
}

.code-editor:focus {
    box-shadow: 0 0 0 2px var(--deep-crimson);
}

/* Output Preview */
.output-preview {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.output-content {
    min-height: 250px;
    padding: 2rem;
    background: white;
}

[data-theme="dark"] .output-content {
    background: rgba(5, 46, 22, 0.5);
}

.output-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Experiments Section */
.experiments-section {
    margin-top: 4rem;
}

.experiments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .experiments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.experiment-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

[data-theme="dark"] .experiment-card {
    background: rgba(6, 78, 59, 0.3);
}

.experiment-card:hover {
    box-shadow: var(--shadow-xl);
}

.experiment-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.experiment-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.experiment-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(132, 169, 140, 0.2);
    color: var(--sage-authority);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   RESOURCE VAULT STYLES
   ============================================ */

/* Stats Section */
.vault-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .vault-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vault-stat-card {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

[data-theme="dark"] .vault-stat-card {
    background: rgba(6, 78, 59, 0.3);
}

.vault-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-crimson);
    margin-bottom: 0.5rem;
}

.vault-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resource-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

[data-theme="dark"] .resource-card {
    background: rgba(6, 78, 59, 0.3);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.resource-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    transition: transform var(--transition-slow);
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.resource-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.resource-card:hover .resource-title {
    color: var(--deep-crimson);
}

.resource-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.resource-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.resource-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.download-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--deep-crimson);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.download-btn:hover {
    background: #9a2440;
    transform: translateY(-2px);
}

/* CTA Section */
.vault-cta {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--forest-authority), var(--deep-crimson));
    border-radius: var(--radius-xl);
}

.vault-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.vault-cta p {
    font-size: 1.125rem;
    color: var(--soft-warm-white);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
    }
}

.cta-input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1rem;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-btn {
    padding: 0.75rem 2rem;
    background: white;
    color: var(--forest-authority);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cta-btn:hover {
    background: var(--soft-warm-white);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

   .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 78, 59, 0.1);
    border-radius: var(--radius-md);
    color: var(--forest-authority);
    flex-shrink: 0;
}

[data-theme="dark"] .method-icon {
    background: rgba(132, 169, 140, 0.2);
    color: var(--sage-authority);
}

.method-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.method-link {
    color: var(--deep-crimson);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.method-link:hover {
    color: #9a2440;
}

.method-text {
    color: var(--text-secondary);
}

/* Social Links */
.social-section {
    margin-bottom: 3rem;
}

.social-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    transition: all var(--transition-fast);
}

[data-theme="dark"] .social-link-item {
    background: rgba(6, 78, 59, 0.3);
}

.social-link-item:hover {
    transform: translateX(8px);
    background: var(--forest-authority);
    color: white;
}

[data-theme="dark"] .social-link-item:hover {
    background: var(--sage-authority);
    color: var(--deep-forest);
}

.social-link-item svg {
    width: 24px;
    height: 24px;
}

/* Response Info */
.response-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(132, 169, 140, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

[data-theme="dark"] .contact-form-wrapper {
    background: rgba(6, 78, 59, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--deep-crimson);
    box-shadow: 0 0 0 3px rgba(124, 29, 51, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: rgb(22, 163, 74);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: rgb(220, 38, 38);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Button Loading State */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ============================================
   CONSULTATION PAGE STYLES
   ============================================ */

   .consultation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.consultation-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.consultation-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
}

[data-theme="dark"] .pricing-card {
    background: rgba(6, 78, 59, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--deep-crimson);
    box-shadow: 0 0 0 1px var(--deep-crimson);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--deep-crimson);
    color: white;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 78, 59, 0.1);
    border-radius: var(--radius-xl);
    color: var(--forest-authority);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .pricing-icon {
    background: rgba(132, 169, 140, 0.2);
    color: var(--sage-authority);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-crimson);
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.pricing-features svg {
    color: var(--forest-authority);
    flex-shrink: 0;
    margin-top: 2px;
}

[data-theme="dark"] .pricing-features svg {
    color: var(--sage-authority);
}

/* Booking Form */
.booking-form-wrapper {
    margin-bottom: 4rem;
}

.booking-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-subtitle span {
    color: var(--deep-crimson);
    font-weight: 700;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* FAQ Section */
.faq-section {
    margin-top: 6rem;
}

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

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

[data-theme="dark"] .faq-item {
    background: rgba(6, 78, 59, 0.3);
}

.faq-question {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   OVERVIEW PAGE STYLES
   ============================================ */

/* Code Rain Canvas */
.code-rain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.code-rain-canvas.active {
    opacity: 0.3;
}

/* Terminal */
.terminal-container {
    background: var(--deep-forest);
    border-radius: var(--radius-xl);
    padding: 0;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--forest-authority);
    overflow: hidden;
}

.terminal-header {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #7C1D33; }
.dot.yellow { background: #84A98C; }
.dot.green { background: #064E3B; }

.terminal-body {
    padding: 2rem;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    font-size: 0.875rem;
    line-height: 1.6;
}

.terminal-body pre {
    margin: 0;
    white-space: pre-wrap;
}

.cursor {
    background: var(--sage-authority);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Glitch Title */
.glitch-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.glitch-title.glitching {
    animation: glitch-skew 1s infinite;
}

.glitch-title.glitching::before,
.glitch-title.glitching::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title.glitching::before {
    animation: glitch-anim-1 0.3s infinite;
    clip: rect(0, 900px, 0, 0);
    color: var(--deep-crimson);
}

.glitch-title.glitching::after {
    animation: glitch-anim-2 0.3s infinite;
    clip: rect(0, 900px, 0, 0);
    color: var(--forest-authority);
}

@keyframes glitch-anim-1 {
    0% { clip: rect(23px, 9999px, 94px, 0); transform: skew(0.5deg); }
    5% { clip: rect(15px, 9999px, 71px, 0); transform: skew(0.8deg); }
    10% { clip: rect(85px, 9999px, 12px, 0); transform: skew(0.3deg); }
    15% { clip: rect(44px, 9999px, 56px, 0); transform: skew(0.6deg); }
    20% { clip: rect(92px, 9999px, 38px, 0); transform: skew(0.4deg); }
    100% { clip: rect(0, 9999px, 0, 0); transform: skew(0deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 45px, 0); transform: skew(0.4deg); }
    5% { clip: rect(22px, 9999px, 83px, 0); transform: skew(0.7deg); }
    10% { clip: rect(54px, 9999px, 19px, 0); transform: skew(0.5deg); }
    15% { clip: rect(71px, 9999px, 34px, 0); transform: skew(0.3deg); }
    20% { clip: rect(11px, 9999px, 67px, 0); transform: skew(0.6deg); }
    100% { clip: rect(0, 9999px, 0, 0); transform: skew(0deg); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(2deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(1deg); }
    50% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Flip Cards */
.flip-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .flip-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flip-card {
    perspective: 1000px;
    height: 150px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.flip-card-front {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .flip-card-front {
    background: rgba(6, 78, 59, 0.3);
}

.flip-card-back {
    background: var(--deep-crimson);
    color: white;
    transform: rotateY(180deg);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.flip-card-front .stat-value {
    color: var(--deep-crimson);
}

.stat-label {
    font-size: 0.875rem;
    text-align: center;
}

.flip-card-front .stat-label {
    color: var(--text-secondary);
}

/* Developer Simulator */
.dev-simulator {
    padding: 2rem;
}

.simulator-time {
    text-align: center;
    margin-bottom: 2rem;
}

.time-display {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-crimson);
    line-height: 1;
    margin-bottom: 1rem;
}

.activity-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.activity-display .ph {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

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

@media (min-width: 768px) {
    .simulator-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sim-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
}

[data-theme="dark"] .sim-stat {
    background: rgba(5, 46, 22, 0.5);
}

.sim-stat .ph {
    margin: 0 auto 0.75rem;
    color: var(--icon-color);
    font-size: 32px;
    width: 32px;
    height: 32px;
    display: block;
}

.sim-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.sim-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.productivity-display {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Code Block */
.code-block {
    padding: 2rem;
    background: var(--deep-forest);
    border: 2px solid var(--forest-authority);
}

[data-theme="dark"] .code-block {
    background: rgba(5, 46, 22, 0.9);
}

.code-block pre {
    margin: 0;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
}

.code-keyword {
    font-family: 'Courier New', Courier, monospace;
    color: var(--deep-crimson);
}

/* Skills Constellation */
.constellation-container {
    position: relative;
    height: 400px;
    padding: 0;
    overflow: hidden;
}

#skillCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#skillNodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.skill-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.skill-orb {
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor;
    transition: all 0.3s ease;
}

.skill-node:hover .skill-orb {
    transform: scale(1.5);
    box-shadow: 0 0 40px currentColor;
}

.skill-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 78, 59, 0.9);
    color: white;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 0.875rem;
}

.skill-node:hover .skill-label {
    opacity: 1;
}

/* Timeline */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(132, 169, 140, 0.3);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-line {
        display: none;
    }
}

.timeline-content {
    width: 100%;
    padding: 2rem;
}

@media (min-width: 768px) {
    .timeline-content {
        width: calc(50% - 40px);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
        padding-right: 3rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-left: 3rem;
    }
}

.timeline-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.25);
    box-shadow: 0 0 0 4px white;
}

.timeline-icon svg,
.timeline-icon .ph {
    width: 32px;
    height: 32px;
    font-size: 32px;
    color: white;
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.timeline-fun-fact {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.timeline-item:hover .timeline-fun-fact {
    max-height: 100px;
    opacity: 1;
    padding-top: 0.75rem;
    border-top-color: var(--border-color);
}

.timeline-fun-fact-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.timeline-fun-fact-title .ph {
    font-size: 0.875rem;
    width: 0.875rem;
    height: 0.875rem;
}

.timeline-fun-fact-text {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Quirky Facts Grid */
.quirky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .quirky-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quirky-card {
    position: relative;
    height: 200px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
}

[data-theme="dark"] .quirky-card {
    background: rgba(6, 78, 59, 0.3);
}

.quirky-front,
.quirky-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;
}

.quirky-back {
    opacity: 0;
}

.quirky-card:hover .quirky-front {
    opacity: 0;
}

.quirky-card:hover .quirky-back {
    opacity: 1;
}

.quirky-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color);
}

.quirky-emoji .ph {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
}

.quirky-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.quirky-fact {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Achievement Badges */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--forest-authority);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.badge-item:nth-child(even) {
    background: var(--deep-crimson);
}

.badge-item:nth-child(3n) {
    background: var(--sage-authority);
}

.badge-item:nth-child(4n) {
    background: var(--deep-moss);
}

.badge-item:hover {
    transform: scale(1.1);
}

.badge-item .ph {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Easter Egg Hint */
.easter-egg-hint {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.easter-egg-hint p {
    margin: 0.5rem 0;
}

/* Utilities */
.section-spacing {
    margin-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.highlight {
    color: var(--deep-crimson);
}

.text-center {
    text-align: center;
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }