    /* About Page - Timeline Journey Design */

    /* Hero - Compact */
    .hero-timeline {
      text-align: center;
      padding: 3rem 0;
    }

    .hero-timeline h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-timeline .tagline {
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    /* Achievement Badges */
    .badges {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 0.8rem;
    }

    .badge-icon {
      font-size: 1rem;
    }

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

    .badge.highlight {
      border-color: var(--neon-cyan);
      box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
    }

    .badge.highlight .badge-text {
      color: var(--neon-cyan);
    }

    /* Timeline Container */
    .timeline-container {
      position: relative;
      max-width: 900px;
      margin: 4rem auto;
      padding: 0 2rem;
    }

    /* Central Timeline Line */
    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg,
        var(--neon-cyan) 0%,
        var(--neon-magenta) 50%,
        var(--neon-green) 100%);
      transform: translateX(-50%);
      border-radius: 3px;
      box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    }

    /* Era Sections */
    .era {
      position: relative;
      margin-bottom: 4rem;
    }

    .era-header {
      text-align: center;
      position: relative;
      z-index: 2;
      margin-bottom: 2rem;
    }

    .era-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: var(--bg);
      border: 2px solid;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .era-traditional .era-badge {
      border-color: var(--neon-cyan);
      color: var(--neon-cyan);
    }

    .era-transition .era-badge {
      border-color: var(--neon-magenta);
      color: var(--neon-magenta);
    }

    .era-bitcoin .era-badge {
      border-color: var(--neon-green);
      color: var(--neon-green);
    }

    /* Timeline Items */
    .timeline-item {
      position: relative;
      width: 45%;
      padding: 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 2rem;
      transition: all 0.3s ease;
    }

    .timeline-item:hover {
      border-color: rgba(0, 245, 255, 0.3);
      box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
      transform: translateY(-4px);
    }

    .timeline-item.left {
      margin-left: 0;
      margin-right: auto;
    }

    .timeline-item.right {
      margin-left: auto;
      margin-right: 0;
    }

    /* Timeline Node */
    .timeline-node {
      position: absolute;
      top: 50%;
      width: 16px;
      height: 16px;
      background: var(--bg);
      border: 3px solid var(--neon-cyan);
      border-radius: 50%;
      transform: translateY(-50%);
      z-index: 2;
      box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    }

    .timeline-item.left .timeline-node {
      right: -8%;
    }

    .timeline-item.right .timeline-node {
      left: -8%;
    }

    /* Connector Line */
    .timeline-connector {
      position: absolute;
      top: 50%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--neon-cyan));
      transform: translateY(-50%);
    }

    .timeline-item.left .timeline-connector {
      right: -5%;
      width: 5%;
    }

    .timeline-item.right .timeline-connector {
      left: -5%;
      width: 5%;
      background: linear-gradient(90deg, var(--neon-cyan), transparent);
    }

    .timeline-item h3 {
      color: var(--text);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    .timeline-item p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .timeline-year {
      font-size: 0.75rem;
      color: var(--neon-cyan);
      font-weight: 600;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Photo in Timeline */
    .timeline-photo {
      position: relative;
      margin: 0 auto 2rem;
      width: fit-content;
    }

    .timeline-photo-inner {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--neon-green);
      box-shadow: 0 0 30px rgba(0, 255, 159, 0.3);
      position: relative;
      z-index: 2;
      background: var(--bg);
    }

    .timeline-photo-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .timeline-photo-label {
      text-align: center;
      margin-top: 1rem;
      color: var(--neon-green);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    /* Quote Callout */
    .quote-callout {
      max-width: 700px;
      margin: 3rem auto;
      text-align: center;
      padding: 2rem;
      position: relative;
    }

    .quote-callout::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
      border-radius: 3px;
    }

    .quote-text {
      font-size: 1.5rem;
      color: var(--text);
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .quote-attribution {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Mission & Work - Compact */
    .compact-section {
      max-width: 900px;
      margin: 4rem auto;
    }

    .compact-title {
      text-align: center;
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 2rem;
    }

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

    .mission-item {
      text-align: center;
      padding: 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    .mission-item-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .mission-item h3 {
      color: var(--neon-cyan);
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .mission-item p {
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.5;
    }

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

    .work-card {
      padding: 1.25rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      text-decoration: none;
      text-align: center;
      transition: all 0.3s ease;
    }

    .work-card:hover {
      border-color: var(--neon-cyan);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 245, 255, 0.15);
    }

    .work-card-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .work-card h4 {
      color: var(--text);
      font-size: 0.9rem;
      margin: 0;
    }

    /* Contact Row */
    .contact-row {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 3rem 0;
      flex-wrap: wrap;
    }

    .contact-pill {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .contact-pill:hover {
      border-color: var(--neon-cyan);
      box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    }

    .contact-pill.linkedin:hover {
      border-color: #0a66c2;
      box-shadow: 0 0 20px rgba(10, 102, 194, 0.3);
    }

    .contact-pill .icon {
      font-size: 1.25rem;
    }

    .contact-pill .label {
      color: var(--text);
      font-weight: 500;
      font-size: 0.9rem;
    }

    /* CTA */
    .cta-timeline {
      text-align: center;
      padding: 3rem 2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      margin: 2rem auto;
      max-width: 600px;
    }

    .cta-timeline h2 {
      font-size: 1.5rem;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    .cta-timeline p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .cta-btn-timeline {
      display: inline-block;
      padding: 0.875rem 2rem;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
      color: var(--bg);
      text-decoration: none;
      font-weight: 700;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .cta-btn-timeline:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .timeline-line {
        left: 20px;
      }

      .timeline-item {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        margin-right: 0 !important;
      }

      .timeline-item .timeline-node {
        left: -42px !important;
        right: auto !important;
      }

      .timeline-item .timeline-connector {
        left: -30px !important;
        right: auto !important;
        width: 30px !important;
        background: linear-gradient(90deg, var(--neon-cyan), transparent) !important;
      }

      .mission-row {
        grid-template-columns: 1fr;
      }

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

      .hero-timeline h1 {
        font-size: 2rem;
      }
    }
