:root {
/* Modern Professional Palette - Inspired by Sonder */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
    --text-light: #ffffff;
    --text-accent: #a5b4fc;
    
    /* Primary Brand Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-hover: #5b21b6;
    
    /* Secondary Colors */
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --secondary-light: #a78bfa;
    
    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-warm: #f59e0b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Background Gradients */
    --bg-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #475569 50%, #6366f1 75%, #8b5cf6 100%);
    --bg-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --bg-glass: rgba(255, 255, 255, 0.08);
    --bg-glass-hover: rgba(255, 255, 255, 0.12);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows - Enhanced for dark theme */
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 16px -4px rgba(0, 0, 0, 0.4), 0 4px 8px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 32px -8px rgba(0, 0, 0, 0.5), 0 8px 16px -4px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 24px 48px -12px rgba(0, 0, 0, 0.6), 0 12px 24px -6px rgba(0, 0, 0, 0.4);
  }

  /* Reset + base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.125rem; }
  h6 { font-size: 1rem; }
  
  p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
  }
  
  a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  a:hover {
    color: var(--text-light);
    text-decoration: underline;
  }
  
  /* Layout Components */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }
  
  .container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }
  
  /* Header */
  header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    gap: var(--space-xl);
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
  
  
  .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
  }
  
  .site-title:hover {
    text-decoration: none;
    color: var(--accent-warm);
  }
  
  /* Navigation */
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .main-nav a {
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--white);
    background-color: var(--primary);
    text-decoration: none;
  }
  
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
  }
  
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
      z-index: 101;
    }
    
    .main-nav {
      display: none;
    }
    
    .main-nav.mobile-open {
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      border-top: 1px solid var(--gray-600);
      border-bottom: 1px solid var(--gray-600);
      box-shadow: var(--shadow-lg);
      z-index: 100;
    }
    
    .main-nav.mobile-open ul {
      flex-direction: column;
      padding: var(--space-lg);
      gap: var(--space-sm);
      margin: 0;
    }
    
    .main-nav.mobile-open li {
      width: 100%;
    }
    
    .main-nav.mobile-open a {
      display: block;
      padding: var(--space-sm) var(--space-md);
      width: 100%;
      text-align: left;
    }
    
    .header-content {
      flex-wrap: wrap;
      position: relative;
    }
    
    .site-title {
      font-size: 1.25rem;
    }
  }
  
  /* Hero Section - Sonder-inspired */
  .hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
  }
  
  .hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 0.4em;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: var(--font-sans);
  }
  
  .hero p {
    font-size: 1.5rem;
    line-height: 1.5em;
    color: var(--text-accent);
    margin-bottom: 2.5em;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-xl);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: var(--space-xs);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--text-light);
  }
  
  .btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    text-decoration: none;
  }
  
  .btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.125rem;
  }
  
  /* Glass Cards */
  .card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    overflow: hidden;
    position: relative;
    will-change: transform;
  }
  
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(0, 0, 0, 0.25);
  }
  
  .card:hover::before {
    opacity: 1;
  }
  
  .card-body {
    padding: var(--space-2xl);
  }
  
  .card-header {
    padding: var(--space-xl) var(--space-2xl) 0;
  }
  
  .card-footer {
    padding: 0 var(--space-2xl) var(--space-2xl);
  }
  
  /* Content Sections */
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Grid */
  .grid {
    display: grid;
    gap: var(--space-2xl);
  }
  
  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Notice/Alert */
  .notice {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    border: 1px solid var(--accent-warm);
    border-left: 4px solid var(--accent-warm);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
  }
  
  .notice:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--white);
  }
  
  .notice h3 {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
  }
  
  .notice p {
    color: var(--text-secondary);
    margin-bottom: 0;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--text-light);
    padding: var(--space-2xl) 0;
    margin-top: var(--space-3xl);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-600);
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .footer-nav {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
  }
  
  .footer-nav a:hover {
    color: var(--white);
    background-color: var(--primary);
    text-decoration: none;
  }
  
  .footer-copyright {
    color: var(--gray-300);
    margin: 0;
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .footer-nav {
      flex-direction: column;
      text-align: center;
      gap: var(--space-sm);
    }
  }

  /* Glass Content Sections */
  .content-section {
    max-width: 900px;
    margin: var(--space-2xl) auto;
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
  }
  
  .content-section h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--text-light);
  }
  
  .content-section h3 {
    font-size: 1.5rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--text-light);
  }
  
  .content-section ul {
    padding-left: var(--space-xl);
    margin-top: var(--space-sm);
  }
  
  .content-section li {
    margin-bottom: var(--space-sm);
  }

  .content-wrapper {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    padding: var(--space-2xl) var(--space-lg);
    min-height: calc(100vh - 200px);
  }
  
  /* Legacy CTA button compatibility */
  .cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: var(--space-sm) var(--space-xl);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-sm);
  }
  
  .cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--text-light);
  }

  .issues-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-500);
  }
  
  .issue-card {
    border-left: 4px solid var(--accent-warm);
    padding: 1.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-500) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--gray-400);
    will-change: transform;
  }
  
  .issue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-warm);
  }
  
  .issue-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .article-entry {
    margin-bottom: 2rem;
  }
  
  .article-entry h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .article-entry .author {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
  }
  
  .article-entry .abstract {
    margin-bottom: 0.75rem;
  }
  
  .article-link {
    color: var(--accent-warm);
    font-weight: bold;
    text-decoration: none;
  }
  
  .article-link:hover {
    color: var(--text-light);
    text-decoration: underline;
  }

  .board-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-500);
  }
  
  .board-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .board-section .intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
  }
  
  .board-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media screen and (min-width: 768px) {
    .board-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .editor-card {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-500) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-warm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--gray-400);
    will-change: transform;
  }
  
  .editor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-warm);
  }
  
  .editor-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
  }
  
  .editor-role {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-muted);
  }
  
  .editor-bio {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
  }
  
  .editor-link {
    color: var(--accent-warm);
    text-decoration: none;
    font-weight: bold;
  }
  
  .editor-link:hover {
    color: var(--text-light);
    text-decoration: underline;
  }

  .contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
  }
  
  .contact-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .email-link a {
    font-size: 1.2rem;
    color: var(--accent-warm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .email-link a:hover {
    text-decoration: underline;
    color: var(--text-light);
  }

  .home-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-500);
  }
  
  .home-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-align: center;
  }
  
  .home-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .home-section .cta-button {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  
  .home-section .cta-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
  }
  
  /* Skills section styles */
  .skills-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-500);
  }
  
  .skills-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--text-light);
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  @media screen and (min-width: 768px) {
    .skills-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .skill-category {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-500) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-400);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
  }
  
  .skill-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-warm);
  }
  
  .skill-category h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--accent-warm);
    padding-bottom: var(--space-xs);
  }
  
  .skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .skill-category li {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-sm);
    position: relative;
  }
  
  .skill-category li::before {
    content: '•';
    color: var(--accent-warm);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .editor-achievements {
    margin-top: var(--space-md);
  }
  
  .editor-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .editor-achievements li {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
    font-size: 0.9rem;
  }
  
  .editor-achievements li::before {
    content: '▸';
    color: var(--accent-warm);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  /* Research items styling */
  .research-item {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-500) 100%);
    border-left: 4px solid var(--accent-warm);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-400);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
  }
  
  .research-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-warm);
  }
  
  .research-item h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--accent-warm);
    padding-bottom: var(--space-xs);
  }
  
  .research-item p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }
  
  .research-item ul {
    margin-top: var(--space-sm);
    padding-left: 0;
    list-style: none;
  }
  
  .research-item li {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
  }
  
  .research-item li::before {
    content: '→';
    color: var(--accent-warm);
    position: absolute;
    left: 0;
    font-weight: bold;
  }
